Skip to content

Commit

Permalink
chore: fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Apr 29, 2014
1 parent 431449f commit 46291d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/angular/service/collectionRepeatManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ function($rootScope, $timeout) {
primaryPos, secondaryPos, secondaryPos
);
this.renderedItems[dataIndex] = item;
if (!item.scope.$$phase) {
if (item.scope && !item.scope.$$phase) {
item.scope.$digest();
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"lodash": "^2.4.1",
"winston": "^0.7.2",
"minimist": "0.0.8",
"gulp-minify-css": "0.3.1",
"gulp-minify-css": "^0.3.0",
"semver": "^2.2.1",
"cp-r": "^0.1.1",
"mkdirp": "^0.3.5",
Expand Down

0 comments on commit 46291d6

Please sign in to comment.