2014-01-05 16:07:11 +00:00
|
|
|
/*!
|
2015-11-29 18:01:57 +00:00
|
|
|
* Webogram v0.5.2 - messaging web application for MTProto
|
2014-01-05 16:07:11 +00:00
|
|
|
* https://github.com/zhukov/webogram
|
|
|
|
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
|
|
|
|
* https://github.com/zhukov/webogram/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Declare app level module which depends on filters, and services
|
|
|
|
angular.module('myApp', [
|
|
|
|
'ngRoute',
|
|
|
|
'ngSanitize',
|
2014-07-01 18:46:16 +00:00
|
|
|
'ngTouch',
|
2014-01-05 16:07:11 +00:00
|
|
|
'ui.bootstrap',
|
2014-09-23 07:33:50 +00:00
|
|
|
'mediaPlayer',
|
2014-06-20 15:34:14 +00:00
|
|
|
'izhukov.utils',
|
|
|
|
'izhukov.mtproto',
|
|
|
|
'izhukov.mtproto.wrapper',
|
2014-01-05 16:07:11 +00:00
|
|
|
'myApp.filters',
|
|
|
|
'myApp.services',
|
2014-03-12 21:55:12 +00:00
|
|
|
/*PRODUCTION_ONLY_BEGIN
|
|
|
|
'myApp.templates',
|
|
|
|
PRODUCTION_ONLY_END*/
|
2014-01-05 16:07:11 +00:00
|
|
|
'myApp.directives',
|
|
|
|
'myApp.controllers'
|
|
|
|
]).
|
2014-06-20 15:34:14 +00:00
|
|
|
config(['$locationProvider', '$routeProvider', '$compileProvider', 'StorageProvider', function($locationProvider, $routeProvider, $compileProvider, StorageProvider) {
|
2014-01-05 16:07:11 +00:00
|
|
|
|
2014-02-01 12:54:31 +00:00
|
|
|
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|blob|filesystem|chrome-extension|app):|data:image\//);
|
2015-05-01 13:01:48 +00:00
|
|
|
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|file|tg|mailto|blob|filesystem|chrome-extension|app):|data:/);
|
2014-01-05 16:07:11 +00:00
|
|
|
|
2014-06-25 11:24:47 +00:00
|
|
|
if (Config.Modes.test) {
|
|
|
|
StorageProvider.setPrefix('t_');
|
|
|
|
}
|
2014-01-05 16:07:11 +00:00
|
|
|
|
2014-09-11 13:06:06 +00:00
|
|
|
$routeProvider.when('/', {templateUrl: templateUrl('welcome'), controller: 'AppWelcomeController'});
|
|
|
|
$routeProvider.when('/login', {templateUrl: templateUrl('login'), controller: 'AppLoginController'});
|
|
|
|
$routeProvider.when('/im', {templateUrl: templateUrl('im'), controller: 'AppIMController', reloadOnSearch: false});
|
2014-01-05 16:07:11 +00:00
|
|
|
$routeProvider.otherwise({redirectTo: '/'});
|
|
|
|
|
|
|
|
}]);
|