fixing scope of "use strict", so we do not need to remove it when concatinating our scripts like we do now with minjs

This commit is contained in:
Ralf Becker
2016-02-29 20:40:43 +00:00
parent fc7d679fea
commit aa31a8705f
76 changed files with 548 additions and 630 deletions

View File

@ -10,8 +10,6 @@
* @version $Id$
*/
"use strict";
/*egw:use
jquery.jquery;
et2_core_inheritance;
@ -24,7 +22,7 @@
*
* @augments Class
*/
var et2_dynheight = Class.extend(
var et2_dynheight = (function(){ "use strict"; return Class.extend(
{
/**
* Constructor for the dynheight object
@ -192,5 +190,5 @@ var et2_dynheight = Class.extend(
}
}
});
});}).call(this);