Skip to content

Commit 7ac1a6a

Browse files
committed
Documentation updates
* Added eslint rule `eol-last` and set to `never` * Ran build to create minified file in `dist`
1 parent 0f69dda commit 7ac1a6a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
"semi": [
124124
2,
125125
"always"
126-
]
126+
],
127+
"eol-last": ["error", "never"]
127128
}
128129
}

dist/jquery.jscroll.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jquery.jscroll.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
iTotalHeight = Math.ceil(iTopHeight - innerTop + _$scroll.height() + iContainerTop);
9595

9696
if (!data.waiting && iTotalHeight + _options.padding >= $inner.outerHeight()) {
97-
//data.nextHref = $.trim(data.nextHref + ' ' + _options.contentSelector);
9897
_debug('info', 'jScroll:', $inner.outerHeight() - iTotalHeight, 'from bottom. Loading next request...');
9998
return _load();
10099
}
@@ -224,4 +223,4 @@
224223
});
225224
};
226225

227-
})(jQuery);
226+
})(jQuery);

0 commit comments

Comments
 (0)