Sha256: 3e1c8285fdb7a5358c7518ce45b2ad73f43be309420521f023147c1f0b6e1b7d
Contents?: true
Size: 716 Bytes
Versions: 6
Compression:
Stored size: 716 Bytes
Contents
'use strict'; /** * @ngdoc overview * @name testApp * @description * # testApp * * Main module of the application. */ var testApp = angular .module('testApp', [ 'ngPromiseExtras', 'ngAnimate', 'ngCookies', 'ngResource', 'ngSanitize', 'ngTouch', 'ngTable', 'ui.bootstrap', 'ui.router', 'ui.utils', 'pascalprecht.translate', 'angularApiAdapter', 'angularMoment', 'testApp.Surveys' ]) .constant('angularMomentConfig', { preprocess: 'utc', timezone: 'America/Toronto' }) .config(function ($urlRouterProvider) { $urlRouterProvider.otherwise("surveys"); }) .run( function($rootScope, $state, ApiAdapter) { ApiAdapter.baseUrl = function() { return ""; }; } );
Version data entries
6 entries across 6 versions & 1 rubygems