We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f932c3f commit 4bb6780Copy full SHA for 4bb6780
jquery.smooth-scroll.js
@@ -59,7 +59,7 @@ $.fn.extend({
59
include = true;
60
61
62
- if (!opts.scrollTarget && (!hostMatch || !pathMatch || !thisHash) ) {
+ if ( !opts.scrollTarget && (!hostMatch || !pathMatch || !thisHash) ) {
63
include = false;
64
} else {
65
var exclude = opts.exclude, elCounter = 0, el = exclude.length;
@@ -70,7 +70,7 @@ $.fn.extend({
70
}
71
72
var excludeWithin = opts.excludeWithin, ewlCounter = 0, ewl = excludeWithin.length;
73
- while (include && ewlCounter < ewl) {
+ while ( include && ewlCounter < ewl ) {
74
if ($link.closest(excludeWithin[ewlCounter++]).length) {
75
76
0 commit comments