mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
move use strict out of global scope so it does not affect minifying / concatination
This commit is contained in:
parent
88e5524b79
commit
4e9ad744cc
@ -9,14 +9,13 @@
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
/**
|
||||
* UI for VFS Select widget
|
||||
*
|
||||
* @augments AppJS
|
||||
*/
|
||||
app.classes.vfsSelectUI = AppJS.extend({
|
||||
|
||||
app.classes.vfsSelectUI = (function(){ "use strict"; return AppJS.extend(
|
||||
{
|
||||
vfsSelectWidget: {},
|
||||
path_widget: {},
|
||||
/**
|
||||
@ -312,4 +311,4 @@ app.classes.vfsSelectUI = AppJS.extend({
|
||||
{
|
||||
|
||||
}
|
||||
});
|
||||
});}).call(this);
|
||||
|
Loading…
Reference in New Issue
Block a user