Skip to content
This repository was archived by the owner on Jan 17, 2022. It is now read-only.

Commit 3050a29

Browse files
committed
Remove callback parameter.
1 parent 6d22e0f commit 3050a29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/angular-intro.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@
100100
}
101101
};
102102

103-
scope.ngIntroNextMethod = function (callback) {
103+
scope.ngIntroNextMethod = function () {
104104
intro.nextStep();
105105
}
106106

107-
scope.ngIntroPreviousMethod = function (callback) {
107+
scope.ngIntroPreviousMethod = function () {
108108
intro.previousStep();
109109
}
110110

0 commit comments

Comments
 (0)