diff options
Diffstat (limited to 'web/app/view/BaseDialog.js')
-rw-r--r-- | web/app/view/BaseDialog.js | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/web/app/view/BaseDialog.js b/web/app/view/BaseDialog.js index f5cb8ca1d..fb09f12d1 100644 --- a/web/app/view/BaseDialog.js +++ b/web/app/view/BaseDialog.js @@ -13,15 +13,11 @@ * 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: Traccar.Style.panelPadding, - resizable: false, - modal: true - }); - -})(); + bodyPadding: Traccar.Style.panelPadding, + resizable: false, + modal: true +}); |