mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 20:11:23 +02:00
move use strict out of global scope so it does not affect minifying / concatination
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user