aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/BaseDialog.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view/BaseDialog.js')
-rw-r--r--web/app/view/BaseDialog.js16
1 files changed, 10 insertions, 6 deletions
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
+ });
+
+})();