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

Commit b9e52de

Browse files
author
Alexandre-io
committed
fix(jshint): typo fix to pass jshint tests
1 parent c857e99 commit b9e52de

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/angular-intro.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -60,37 +60,37 @@
6060
if (scope.ngIntroOncomplete) {
6161
intro.oncomplete(function() {
6262
scope.ngIntroOncomplete.call(this, scope);
63-
$timeout(function() {scope.$digest()});
63+
$timeout(function() {scope.$digest();});
6464
navigationWatch();
6565
});
6666
}
6767

6868
if (scope.ngIntroOnexit) {
6969
intro.onexit(function() {
7070
scope.ngIntroOnexit.call(this, scope);
71-
$timeout(function() {scope.$digest()});
71+
$timeout(function() {scope.$digest();});
7272
navigationWatch();
7373
});
7474
}
7575

7676
if (scope.ngIntroOnchange) {
7777
intro.onchange(function(targetElement){
7878
scope.ngIntroOnchange.call(this, targetElement, scope);
79-
$timeout(function() {scope.$digest()});
79+
$timeout(function() {scope.$digest();});
8080
});
8181
}
8282

8383
if (scope.ngIntroOnbeforechange) {
8484
intro.onbeforechange(function(targetElement) {
8585
scope.ngIntroOnbeforechange.call(this, targetElement, scope);
86-
$timeout(function() {scope.$digest()});
86+
$timeout(function() {scope.$digest();});
8787
});
8888
}
8989

9090
if (scope.ngIntroOnafterchange) {
9191
intro.onafterchange(function(targetElement){
9292
scope.ngIntroOnafterchange.call(this, targetElement, scope);
93-
$timeout(function() {scope.$digest()});
93+
$timeout(function() {scope.$digest();});
9494
});
9595
}
9696

@@ -103,11 +103,11 @@
103103

104104
scope.ngIntroNextMethod = function () {
105105
intro.nextStep();
106-
}
106+
};
107107

108108
scope.ngIntroPreviousMethod = function () {
109109
intro.previousStep();
110-
}
110+
};
111111

112112
scope.ngIntroExitMethod = function (callback) {
113113
intro.exit();

0 commit comments

Comments
 (0)