From 9834ff8c5b3714cb6f0307416bc7a6742bd34f96 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 1 Feb 2015 11:20:39 +1300 Subject: Add simple extjs code --- web/app.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 web/app.js (limited to 'web/app.js') 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 World...' + }); + + } +}); -- cgit v1.2.3