diff --git a/static/appjs/appbase.js b/static/appjs/appbase.js index 802b26e583407a4a1476b4443d40652a902dc447..842a8c314d21a359a700b6df7c617d8f3cadd771 100644 --- a/static/appjs/appbase.js +++ b/static/appjs/appbase.js @@ -14,14 +14,12 @@ Ext.namespace('App'); * Ext.direct.Provider exposing methods for a web service. * This constants is defined by the server. */ -App.cfgSvcMethods = null; /** * @cfg {String} App.dburl * Define the url of the database router/controller * This constants is defined by the server. */ -App.dburl = null; /** * @cfg {Boolean} App.debug @@ -29,14 +27,12 @@ App.dburl = null; * This constants is defined by the server. * */ -App.debug = null; /** * @cfg {String} App.name * Name of the web application. * This constants is defined by the server. */ -App.name = null; /** * Function to handle HTTP exception appearing in Form transation. diff --git a/views/applayout.html b/views/applayout.html index 60e6e97591ed3ee564104f052eac90004f7d84d5..997af3bf57b0267b354766b553f839543e423ff6 100644 --- a/views/applayout.html +++ b/views/applayout.html @@ -19,10 +19,6 @@ {{for el in jlibs:}} <script type="text/javascript" src="{{=el}}"></script>{{pass}} - <!-- application librairies --> - {{for el in alibs:}} - <script type="text/javascript" src="{{=el}}"></script>{{pass}} - <!-- Namespace, global variables and remote methods for the application --> <script type="text/javascript"> Ext.namespace('App'); @@ -37,6 +33,10 @@ } }; </script> + + <!-- application librairies --> + {{for el in alibs:}} + <script type="text/javascript" src="{{=el}}"></script>{{pass}} <div id='appmain'></div> </body>