Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/jquery/avatar.js')
-rw-r--r--core/src/jquery/avatar.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/core/src/jquery/avatar.js b/core/src/jquery/avatar.js
index 24cef392d34..3849af3b359 100644
--- a/core/src/jquery/avatar.js
+++ b/core/src/jquery/avatar.js
@@ -1,7 +1,8 @@
-/*
+/**
* @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
*
- * @author 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
*
@@ -16,7 +17,8 @@
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
import $ from 'jquery'
@@ -110,7 +112,7 @@ $.fn.avatar = function(user, size, ie8fix, hidedefault, callback, displayname) {
url = OC.generateUrl(
'/avatar/{user}/{size}?v={version}',
{
- user: user,
+ user,
size: Math.ceil(size * window.devicePixelRatio),
version: oc_userconfig.avatar.version,
})
@@ -118,7 +120,7 @@ $.fn.avatar = function(user, size, ie8fix, hidedefault, callback, displayname) {
url = OC.generateUrl(
'/avatar/{user}/{size}',
{
- user: user,
+ user,
size: Math.ceil(size * window.devicePixelRatio),
})
}