summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-03-22 17:01:54 +0100
committerGitHub <noreply@github.com>2017-03-22 17:01:54 +0100
commit4518a2892479e98e9fb49ef6e1c90f0c58a19337 (patch)
tree34709afa5bee9fb070130486b7e0c0972cd7457f /lib/private/legacy
parent0b5e1814bea3a2f14e8fc2551cfcfc61604462d9 (diff)
downloadnextcloud-server-4518a2892479e98e9fb49ef6e1c90f0c58a19337.tar.gz
nextcloud-server-4518a2892479e98e9fb49ef6e1c90f0c58a19337.zip
Revert "Bundle vendor js"
Diffstat (limited to 'lib/private/legacy')
-rw-r--r--lib/private/legacy/template.php28
1 files changed, 13 insertions, 15 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php
index 3f6bfe586db..8535e018879 100644
--- a/lib/private/legacy/template.php
+++ b/lib/private/legacy/template.php
@@ -114,10 +114,13 @@ 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);
@@ -137,24 +140,19 @@ class OC_Template extends \OC\Template\Base {
OC_Util::addScript('files/fileinfo');
OC_Util::addScript('files/client');
- 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(
+ // 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 {
- // Import all (combined) default vendor libraries
- OC_Util::addVendorScript('core', null, true);
+ throw new \Exception('Cannot read core/js/core.json');
}
if (\OC::$server->getRequest()->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE])) {