mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-24 23:58:54 +01:00
Remove all "use strict" as we have a mixure of strict and non-strict code (mostly externals libs)
This commit is contained in:
parent
43fe37761f
commit
ee378ec6b9
@ -161,6 +161,12 @@ $min_symlinks = array();
|
||||
list($sitePrefix) = explode('/phpgwapi/inc/min/', $_SERVER['REQUEST_URI']);
|
||||
$min_symlinks['//'.ltrim($sitePrefix, '/')] = dirname(dirname(dirname(__DIR__)));
|
||||
|
||||
/**
|
||||
* Remove all "use strict" as we have a mixure of strict and non-strict code (mostly externals libs)
|
||||
* and javascript is supposed to run quicker without anyway.
|
||||
*/
|
||||
$min_serveOptions['postprocessor'] = function($in){ return str_replace(array('"use strict";', '"use strict"'), '', $in);};
|
||||
|
||||
/**
|
||||
* If you upload files from Windows to a non-Windows server, Windows may report
|
||||
* incorrect mtimes for the files. This may cause Minify to keep serving stale
|
||||
|
Loading…
Reference in New Issue
Block a user