diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-12-20 18:00:57 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-01-09 15:02:00 +0100 |
commit | 1e80259051cd1b6e4ded633f93d6b1ca06b78a52 (patch) | |
tree | 41e3812457e7b67af056f0fe3a64e52aad8e2381 /lib/private/legacy | |
parent | 5bf06a19a882d979b33d10529b3924d00e571c9c (diff) | |
download | nextcloud-server-1e80259051cd1b6e4ded633f93d6b1ca06b78a52.tar.gz nextcloud-server-1e80259051cd1b6e4ded633f93d6b1ca06b78a52.zip |
Remove core.js
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/template.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index 0c66cca134e..bbf9172dbde 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -124,26 +124,6 @@ class OC_Template extends \OC\Template\Base { OC_Util::addScript('files/client'); OC_Util::addScript('contactsmenu'); OC_Util::addScript('contactsmenu_templates'); - - 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, -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); - } OC_Util::addScript('core', 'dist/main', true); if (\OC::$server->getRequest()->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE])) { |