Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(ripple): fixes typo in ripple code
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Messerle committed Aug 3, 2015
1 parent 69385ad commit c93ba5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/services/ripple/ripple.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function InkRippleService($window, $timeout, $mdUtil) {
scope.$watch(isActiveExpr, function watchActive(newValue) {
isActive = newValue;
if (isActive && !ripples.length) {
mdUtil.nextTick(function () { createRipple(0, 0); });
$mdUtil.nextTick(function () { createRipple(0, 0); });
}
angular.forEach(ripples, updateElement);
});
Expand Down

0 comments on commit c93ba5c

Please sign in to comment.