(function() { 'use strict'; function ParseQueryString () { var qd = {}; location.search.substr(1).split("&").forEach(function(item) { var k = item.split("=")[0]; var v = decodeURIComponent(item.split("=")[1]); (k in qd) ? qd[k].push(v) : qd[k] = [v]; }); return qd; } angular.module('@@APPNAME@@', [ // Warning: Appname should fit with gulpfile.js & index.html 'ui.router', 'ngAnimate', //foundation 'foundation', 'foundation.dynamicRouting', 'foundation.dynamicRouting.animations', // external components 'ui-notification', // Application Components 'AppConfig', 'JQueryEmu', 'DashboardModule', 'UploadFiles', 'LinkButton', 'TokenRefresh', 'RangeSlider', 'ModalNotification' ]) .value ('urlquery', ParseQueryString()) .config(config) .run(run) ; config.$inject = ['$urlRouterProvider', '$locationProvider']; function config($urlProvider, $locationProvider, AppConfig) { $urlProvider.otherwise('/dashboard'); // https://docs.angularjs.org/error/$location/nobase $locationProvider.html5Mode(true).hashPrefix('!'); } function run() { FastClick.attach(document.body); } // Fondation-app.template is not included correctly by gulp // Include here missing templates from foundation-apps/dist/js/foundation-apps-templates.js angular.module('foundation').run(['$templateCache', function($templateCache) { $templateCache.put('components/modal/modal.html', '\n' + ' \n' + ' \n' + '\n' + ''); }]); console.log ("opa=@@APPNAME@@ Loaded"); })();