client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
12 lines (10 loc) • 404 B
JavaScript
var moduleName = 'clientApp';
var module = angular.module(moduleName, ["ui-sdk", 'ui.router', 'angular-storage', 'xtForm', 'ui.bootstrap', 'ngIdle', 'angular-ladda', "appConstants", "ngTouch", "ngAnimate"]);
(function () {
bootstrapApp();
function bootstrapApp() {
angular.element(document).ready(function () {
angular.bootstrap(document, [moduleName]);
});
}
}());