Home Reference Source Repository

js/init.js

'use strict';

import base from './base';
import tools from './tools';

var SynthMobile = 'SynthMobile';
/* Main application module */
angular.module(SynthMobile, [
	'ngRoute',
	'ngAnimate',
	'ngTouch',
	'ab-base64',
	'ui.bootstrap',
	'frapontillo.bootstrap-switch',
	'ng-iscroll',
	'synthesis.config',
	'synthesis.templates',
	base,
	tools
]);

// Wait for cordova before starting application
document.addEventListener('deviceready', function() {
	angular.element(document).ready(function () {
		angular.bootstrap(document, [SynthMobile]);
	});
}, false);