Mercurial > lada > lada-client
changeset 0:1e257ec56220
Initial commit
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 17 Apr 2013 16:34:20 +0200 |
parents | |
children | af8d7217521d |
files | app.js index.html |
diffstat | 2 files changed, 18 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app.js Wed Apr 17 16:34:20 2013 +0200 @@ -0,0 +1,7 @@ +Ext.application({ + name: 'Lada', + autoCreateViewprt: true, + launch: function() { + // Start the application. + } +});
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/index.html Wed Apr 17 16:34:20 2013 +0200 @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <title>Lada</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css"> + <script type="text/javascript" src="extjs/ext-all-debug.js"></script> + <script type="text/javascript" src="app.js"></script> +</head> +<body></body> +</html>