From 48f981a2a9755fb0af6497020e499bb0883e0e1f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 3 Oct 2015 21:01:45 +1300 Subject: Enable JavaScript strict mode --- web/app/view/BaseDialog.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'web/app/view/BaseDialog.js') diff --git a/web/app/view/BaseDialog.js b/web/app/view/BaseDialog.js index d875e14c9..2a8084698 100644 --- a/web/app/view/BaseDialog.js +++ b/web/app/view/BaseDialog.js @@ -13,11 +13,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +(function () { + 'use strict'; -Ext.define('Traccar.view.BaseDialog', { - extend: 'Ext.window.Window', + Ext.define('Traccar.view.BaseDialog', { + extend: 'Ext.window.Window', - bodyPadding: styles.panelPadding, - resizable: false, - modal: true -}); + bodyPadding: styles.panelPadding, + resizable: false, + modal: true + }); + +})(); -- cgit v1.2.3