This commit is contained in:
22
wwwroot/js/index.js
Normal file
22
wwwroot/js/index.js
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* app.js
|
||||
* Root namespace module
|
||||
*/
|
||||
|
||||
/*jslint browser : true, continue : true,
|
||||
devel : true, indent : 2, maxerr : 50,
|
||||
newcap : true, nomen : true, plusplus : true,
|
||||
regexp : true, sloppy : true, vars : false,
|
||||
white : true
|
||||
*/
|
||||
/*global $, app */
|
||||
|
||||
var app = (function () {
|
||||
'use strict';
|
||||
var initModule = function ( $container ) {
|
||||
app.api.initModule();
|
||||
app.shell.initModule( $container );
|
||||
};
|
||||
|
||||
return { initModule: initModule };
|
||||
}());
|
||||
Reference in New Issue
Block a user