jquery-endless-scroll
jquery-endless-scroll copied to clipboard
Use `do` for pass `$ = jQuery`
do ($ = jQuery) ->
$.fn.endlessScroll = (options) ->
new EndlessScroll(this, options).run()
... is more much better than:
(($) ->
$.fn.endlessScroll = (options) ->
new EndlessScroll(this, options).run()
)(jQuery)
Any updates on this?