diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2016-10-20 18:29:57 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2016-10-21 16:56:31 +0200 |
commit | 3e5e07aa64f94bea528450d810249c74d0f8c03f (patch) | |
tree | 2dcd99a22714d77ba2f08dc0c65cd7b83e707613 /lib | |
parent | ed4ed7911a9329462fef02c2d50709b3f092538e (diff) | |
download | nextcloud-server-3e5e07aa64f94bea528450d810249c74d0f8c03f.tar.gz nextcloud-server-3e5e07aa64f94bea528450d810249c74d0f8c03f.zip |
Template css order
Select2 systemtags removal
Settings again
Fix Script
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/template.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index b43b4da839a..7520ffd44ed 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -117,7 +117,7 @@ class OC_Template extends \OC\Template\Base { OC_Util::addStyle("fonts",null,true); OC_Util::addStyle("icons",null,true); OC_Util::addStyle("header",null,true); - OC_Util::addStyle("inputs",null,true); + OC_Util::addStyle("inputs"); OC_Util::addStyle("styles",null,true); // avatars @@ -126,6 +126,10 @@ class OC_Template extends \OC\Template\Base { \OC_Util::addScript('placeholder', null, true); } + OC_Util::addVendorScript('select2/select2'); + OC_Util::addVendorStyle('select2/select2', null, true); + OC_Util::addScript('select2-toggleselect'); + OC_Util::addScript('oc-backbone', null, true); OC_Util::addVendorScript('core', 'backbone/backbone', true); OC_Util::addVendorScript('snapjs/dist/latest/snap', null, true); |