Skip to content

Commit d6cbc8e

Browse files
author
Joe Alves
committed
angular animate added
1 parent a92198d commit d6cbc8e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

generated/browser/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
window.app = angular.module('FullstackGeneratedApp', ['ui.router', 'ui.bootstrap', 'fsaPreBuilt']);
2+
window.app = angular.module('FullstackGeneratedApp', ['fsaPreBuilt', 'ui.router', 'ui.bootstrap', 'ngAnimate']);
33

44
app.config(function ($urlRouterProvider, $locationProvider) {
55
// This turns off hashbang urls (/#about) and changes it to something normal (/about)
@@ -48,4 +48,4 @@ app.run(function ($rootScope, AuthService, $state) {
4848

4949
});
5050

51-
});
51+
});

generated/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
"start": "nodemon --watch server -e js,html server/start.js",
88
"postinstall": "gulp build"
99
},
10-
"engines" : {
11-
"node" : ">=4.0.0"
10+
"engines": {
11+
"node": ">=4.0.0"
1212
},
1313
"dependencies": {
1414
"angular": "^1.5.0-beta.0",
15+
"angular-animate": "^1.4.7",
1516
"angular-mocks": "^1.4.0",
1617
"angular-ui-bootstrap": "^0.14.3",
1718
"angular-ui-router": "^0.2.15",

generated/server/app/views/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<link rel="stylesheet" type="text/css" href="/style.css" />
88
<script src="/lodash/index.js"></script>
99
<script src="/angular/angular.js"></script>
10+
<script src="/angular-animate/angular-animate.js"></script>
1011
<script src="/angular-ui-router/release/angular-ui-router.js"></script>
1112
<script src="/angular-ui-bootstrap/ui-bootstrap.js"></script>
1213
<script src="/angular-ui-bootstrap/ui-bootstrap-tpls.js"></script>

generated/tests/browser/karma.conf.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = function (config) {
55
var filesCollection = [
66
'node_modules/lodash/index.js',
77
'node_modules/angular/angular.js',
8+
'node_modules/angular-animate/angular-animate.js',
89
'node_modules/angular-ui-router/release/angular-ui-router.js',
910
'node_modules/angular-ui-bootstrap/ui-bootstrap.js',
1011
'node_modules/angular-ui-bootstrap/ui-bootstrap-tpls.js',

0 commit comments

Comments
 (0)