Skip to content

Commit

Permalink
ngAnimate bug fixed. Used this solution: angular/angular.js#11992
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuriken (ACER) committed Nov 20, 2015
1 parent ae7ac96 commit 0638200
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"angular-inview": "~1.5.6",
"font-awesome": "font-awsome#~4.4.0",
"slick-carousel": "~1.5.8",
"angular-slick": "~0.2.1"
"angular-slick": "~0.2.1",
"angular-animate": "~1.4.8"
},
"devDependencies": {
"angular-mocks": "~1.4.7"
Expand Down
2 changes: 1 addition & 1 deletion src/js/directives/drct.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* Created by Shuriken on 30.10.2015.
*/

var appDirectives = angular.module('appDirectives', ['angular-inview', 'slick']);
var appDirectives = angular.module('appDirectives', ['angular-inview', 'slick', 'ngAnimate']);
2 changes: 1 addition & 1 deletion src/js/directives/fast-menu.drct.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

.then(function (response) {
scope.fastMenuData = response.data;
console.log('Fast menu data obj:', scope.fastMenuData);
// console.log('Fast menu data obj:', scope.fastMenuData);
},
function (response) {
console.log('Some error happened: ', response);
Expand Down
2 changes: 1 addition & 1 deletion src/js/directives/key-advantages.drct.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
ajaxSvc.getData(keyAdvSlide.url)
.then(function (response) {
scope.ajxObj = response.data;
console.log('Advantages obj is:', scope.ajxObj);
// console.log('Advantages obj is:', scope.ajxObj);
},
function (response) {
console.log('Some error happened: ', response);
Expand Down
2 changes: 1 addition & 1 deletion src/js/directives/main-slider-block.drct.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.then(function (response) {
scope.mainSliderData = response.data;
console.log('Main slider data obj:', scope.mainSliderData);
// console.log('Main slider data obj:', scope.mainSliderData);
},
function (response) {
console.log('Some error happened: ', response);
Expand Down

0 comments on commit 0638200

Please sign in to comment.