diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 16:32:18 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 16:32:18 +0100 |
commit | c64e827f00a7958da57a7a6d5aa22eb0900c167b (patch) | |
tree | 25caa64f26fd4860ada91c06204273a4688b7456 | |
parent | 6248bad0f7b23c16049045ea150a11948b0ebeb1 (diff) | |
download | nextcloud-server-c64e827f00a7958da57a7a6d5aa22eb0900c167b.tar.gz nextcloud-server-c64e827f00a7958da57a7a6d5aa22eb0900c167b.zip |
Since avatar.js is now essentially empty remove it
-rw-r--r-- | core/js/avatar.js | 5 | ||||
-rw-r--r-- | lib/private/template.php | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/core/js/avatar.js b/core/js/avatar.js deleted file mode 100644 index 78b8c2a8cf5..00000000000 --- a/core/js/avatar.js +++ /dev/null @@ -1,5 +0,0 @@ -$(document).ready(function(){ - if (OC.currentUser) { - - } -}); diff --git a/lib/private/template.php b/lib/private/template.php index 04d6a906880..c2528c26851 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -119,7 +119,6 @@ class OC_Template extends \OC\Template\Base { // avatars if (\OC::$server->getSystemConfig()->getValue('enable_avatars', true) === true) { - \OC_Util::addScript('avatar', null, true); \OC_Util::addScript('jquery.avatar', null, true); \OC_Util::addScript('placeholder', null, true); } |