blob: c3ea9274691e0af6313b6263f62f8a60d755f25e [file] [log] [blame]
'use strict';
angular.module('xos.diagnostic', [
'ngResource',
'ngCookies',
'ngLodash',
'ngAnimate',
'ui.router',
'xos.helpers'
])
.config(($stateProvider) => {
$stateProvider
.state('home', {
url: '/',
template: '<diagnostic></diagnostic>'
});
})
.config(function($httpProvider){
$httpProvider.interceptors.push('NoHyperlinks');
});