diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-22 13:34:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-22 13:34:21 +0100 |
commit | ec3f5aa6e22be108e75477a28b58cc56299c0b05 (patch) | |
tree | d7503b49421f0dc123e423a9cea2be611bf3f0cb /lib | |
parent | 11c4875190aced582f23b2041664972a3769008f (diff) | |
parent | d2a2cef4cc21b211c47ba9f56e833a2160dcd988 (diff) | |
download | nextcloud-server-ec3f5aa6e22be108e75477a28b58cc56299c0b05.tar.gz nextcloud-server-ec3f5aa6e22be108e75477a28b58cc56299c0b05.zip |
Merge pull request #3795 from nextcloud/bundle_vendor_js
Bundle vendor js
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/template.php | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index 8535e018879..3f6bfe586db 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -114,13 +114,10 @@ class OC_Template extends \OC\Template\Base { \OC_Util::addScript('jquery.avatar', null, true); \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); OC_Util::addScript('mimetypelist', null, true); OC_Util::addScript('mimetype', null, true); OC_Util::addScript("apps", null, true); @@ -140,19 +137,24 @@ class OC_Template extends \OC\Template\Base { OC_Util::addScript('files/fileinfo'); OC_Util::addScript('files/client'); - // Add the stuff we need always - // following logic will import all vendor libraries that are - // specified in core/js/core.json - $fileContent = file_get_contents(OC::$SERVERROOT . '/core/js/core.json'); - if($fileContent !== false) { - $coreDependencies = json_decode($fileContent, true); - foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) { - // remove trailing ".js" as addVendorScript will append it - OC_Util::addVendorScript( + if (\OC::$server->getConfig()->getSystemValue('debug')) { + // Add the stuff we need always + // following logic will import all vendor libraries that are + // specified in core/js/core.json + $fileContent = file_get_contents(OC::$SERVERROOT . '/core/js/core.json'); + if($fileContent !== false) { + $coreDependencies = json_decode($fileContent, true); + foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) { + //remove trailing ".js" as addVendorScript will append it + OC_Util::addVendorScript( substr($vendorLibrary, 0, strlen($vendorLibrary) - 3),null,true); + } + } else { + throw new \Exception('Cannot read core/js/core.json'); } } else { - throw new \Exception('Cannot read core/js/core.json'); + // Import all (combined) default vendor libraries + OC_Util::addVendorScript('core', null, true); } if (\OC::$server->getRequest()->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE])) { |