diff options
Diffstat (limited to 'web/app/model/Command.js')
-rw-r--r-- | web/app/model/Command.js | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/web/app/model/Command.js b/web/app/model/Command.js index 0eb17ec40..3e848b57d 100644 --- a/web/app/model/Command.js +++ b/web/app/model/Command.js @@ -13,22 +13,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -(function () { - 'use strict'; - Ext.define('Traccar.model.Command', { - extend: 'Ext.data.Model', - identifier: 'negative', +Ext.define('Traccar.model.Command', { + extend: 'Ext.data.Model', + identifier: 'negative', - fields: [{ - name: 'deviceId', - type: 'int' - }, { - name: 'type', - type: 'string' - }, { - name: 'attributes' - }] - }); - -})(); + fields: [{ + name: 'deviceId', + type: 'int' + }, { + name: 'type', + type: 'string' + }, { + name: 'attributes' + }] +}); |