This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
AriaNg/src/scripts/core/app.js

26 lines
583 B
JavaScript
Raw Normal View History

2016-05-13 18:09:12 +02:00
(function () {
'use strict';
var ariaNg = angular.module('ariaNg', [
'ngRoute',
'ngSanitize',
'ngTouch',
'ngMessages',
'ngCookies',
'ngAnimate',
'pascalprecht.translate',
'angularMoment',
'ngWebSocket',
'utf8-base64',
2016-05-13 18:09:12 +02:00
'LocalStorageModule',
'ui-notification',
'angularBittorrentPeerid',
2016-05-13 18:09:12 +02:00
'cgBusy',
'angularPromiseButtons',
'oitozero.ngSweetAlert',
2017-10-14 20:13:28 +02:00
'angular-clipboard',
'inputDropdown',
angularDragula(angular)
2016-05-13 18:09:12 +02:00
]);
2016-08-01 16:49:16 +02:00
}());