Skip to content

Commit

Permalink
style(collectionRepeat): fix jshint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Feb 9, 2015
1 parent 5e68b84 commit 4f08895
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/angular/controller/navViewController.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function($scope, $element, $attrs, $compile, $controller, $ionicNavBarDelegate,
ionic.offGesture(deregDragStart, 'dragstart', onDragStart);
ionic.offGesture(deregDrag, 'drag', onDrag);
ionic.offGesture(deregRelease, 'release', onRelease);
viewTransition = associatedNavBarCtrl = null;
self.element = viewTransition = associatedNavBarCtrl = null;
});
};

Expand Down
2 changes: 1 addition & 1 deletion js/angular/directive/collectionRepeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function($collectionRepeatManager, $collectionDataSource, $parse) {
element: (el = jqLite(child)),
scope: el.isolateScope() || el.scope(),
isOutside: true
})
});
}
}

Expand Down
2 changes: 1 addition & 1 deletion js/angular/service/collectionRepeatManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ function($rootScope, $timeout) {
primaryPos, secondaryPos
));
item.primaryPos = primaryPos;
item.secondaryPos = secondaryPos
item.secondaryPos = secondaryPos;
}

var width = this.isVertical ? itemDimensions.secondarySize : itemDimensions.primarySize;
Expand Down

0 comments on commit 4f08895

Please sign in to comment.