summaryrefslogtreecommitdiffstats
path: root/js/app/App.js
blob: 55c8ef45ecca7d1ecc4c248d617ac38df9f70b74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2014
 */

$('#content.app-news')
    .attr('ng-app', 'News')
    .attr('ng-cloak', '')
    .attr('ng-strict-di', '')
    .attr('ng-controller', 'AppController as App');

/* jshint unused: false */
var app = angular.module('News', ['ngRoute', 'ngSanitize', 'ngAnimate', 'ngVue']);