diff options
Diffstat (limited to 'web/app.js')
-rw-r--r-- | web/app.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/app.js b/web/app.js new file mode 100644 index 000000000..a6084fbda --- /dev/null +++ b/web/app.js @@ -0,0 +1,16 @@ +Ext.application({ + name : 'Traccar', + + launch : function() { + + Ext.create('Ext.Panel', { + renderTo : Ext.getBody(), + width : 200, + height : 150, + bodyPadding : 5, + title : 'Hello World', + html : 'Hello <b>World</b>...' + }); + + } +}); |