aboutsummaryrefslogtreecommitdiff
path: root/web/app/store/TimeUnits.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/store/TimeUnits.js')
-rw-r--r--web/app/store/TimeUnits.js32
1 files changed, 14 insertions, 18 deletions
diff --git a/web/app/store/TimeUnits.js b/web/app/store/TimeUnits.js
index 29730f2b9..e03263825 100644
--- a/web/app/store/TimeUnits.js
+++ b/web/app/store/TimeUnits.js
@@ -13,23 +13,19 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-(function () {
- 'use strict';
- Ext.define('Traccar.store.TimeUnits', {
- extend: 'Ext.data.Store',
- fields: ['name', 'factor'],
+Ext.define('Traccar.store.TimeUnits', {
+ extend: 'Ext.data.Store',
+ fields: ['name', 'factor'],
- data: [{
- name: Strings.sharedSecond,
- factor: 1
- }, {
- name: Strings.sharedMinute,
- factor: 60
- }, {
- name: Strings.sharedHour,
- factor: 3600
- }]
- });
-
-})();
+ data: [{
+ name: Strings.sharedSecond,
+ factor: 1
+ }, {
+ name: Strings.sharedMinute,
+ factor: 60
+ }, {
+ name: Strings.sharedHour,
+ factor: 3600
+ }]
+});