Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

830 lignes
40 KiB

  1. /*global jQuery: true */
  2. /*!
  3. --------------------------------
  4. Infinite Scroll
  5. --------------------------------
  6. + https://github.com/paulirish/infinite-scroll
  7. + version 2.1.0
  8. + Copyright 2011/12 Paul Irish & Luke Shumard
  9. + Licensed under the MIT license
  10. + Documentation: http://infinite-scroll.com/
  11. */
  12. // Uses AMD or browser globals to create a jQuery plugin.
  13. (function (factory) {
  14. if (typeof define === 'function' && define.amd) {
  15. // AMD. Register as an anonymous module.
  16. define(['jquery'], factory);
  17. } else {
  18. // Browser globals
  19. factory(jQuery);
  20. }
  21. }(function ($, undefined) {
  22. 'use strict';
  23. $=window.jQuery;
  24. $.infinitescroll = function infscr(options, callback, element) {
  25. this.element = $(element);
  26. // Flag the object in the event of a failed creation
  27. if (!this._create(options, callback)) {
  28. this.failed = true;
  29. }
  30. };
  31. $.infinitescroll.defaults = {
  32. loading: {
  33. finished: undefined,
  34. finishedMsg: "<em>Congratulations, you've reached the end of the internet.</em>",
  35. img: 'data:image/gif;base64,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',
  36. msg: null,
  37. msgText: '<em>Loading the next set of posts...</em>',
  38. selector: null,
  39. speed: 'fast',
  40. start: undefined
  41. },
  42. state: {
  43. isDuringAjax: false,
  44. isInvalidPage: false,
  45. isDestroyed: false,
  46. isDone: false, // For when it goes all the way through the archive.
  47. isPaused: false,
  48. isBeyondMaxPage: false,
  49. currPage: 1
  50. },
  51. debug: false,
  52. behavior: undefined,
  53. binder: $(window), // used to cache the selector
  54. nextSelector: 'div.navigation a:first',
  55. navSelector: 'div.navigation',
  56. contentSelector: null, // rename to pageFragment
  57. extraScrollPx: 150,
  58. itemSelector: 'div.post',
  59. animate: false,
  60. pathParse: undefined,
  61. dataType: 'html',
  62. appendCallback: true,
  63. bufferPx: 40,
  64. errorCallback: function () { },
  65. infid: 0, //Instance ID
  66. pixelsFromNavToBottom: undefined,
  67. path: undefined, // Either parts of a URL as an array (e.g. ["/page/", "/"] or a function that takes in the page number and returns a URL
  68. prefill: false, // When the document is smaller than the window, load data until the document is larger or links are exhausted
  69. maxPage: undefined // to manually control maximum page (when maxPage is undefined, maximum page limitation is not work)
  70. };
  71. $.infinitescroll.prototype = {
  72. /*
  73. ----------------------------
  74. Private methods
  75. ----------------------------
  76. */
  77. // Bind or unbind from scroll
  78. _binding: function infscr_binding(binding) {
  79. var instance = this,
  80. opts = instance.options;
  81. opts.v = '2.0b2.120520';
  82. // if behavior is defined and this function is extended, call that instead of default
  83. if (!!opts.behavior && this['_binding_'+opts.behavior] !== undefined) {
  84. this['_binding_'+opts.behavior].call(this);
  85. return;
  86. }
  87. if (binding !== 'bind' && binding !== 'unbind') {
  88. this._debug('Binding value ' + binding + ' not valid');
  89. return false;
  90. }
  91. if (binding === 'unbind') {
  92. (this.options.binder).unbind('smartscroll.infscr.' + instance.options.infid);
  93. } else {
  94. (this.options.binder)[binding]('smartscroll.infscr.' + instance.options.infid, function () {
  95. instance.scroll();
  96. });
  97. }
  98. this._debug('Binding', binding);
  99. },
  100. // Fundamental aspects of the plugin are initialized
  101. _create: function infscr_create(options, callback) {
  102. // Add custom options to defaults
  103. var opts = $.extend(true, {}, $.infinitescroll.defaults, options);
  104. this.options = opts;
  105. var $window = $(window);
  106. var instance = this;
  107. // Validate selectors
  108. if (!instance._validate(options)) {
  109. return false;
  110. }
  111. // Validate page fragment path
  112. var path = $(opts.nextSelector).attr('href');
  113. if (!path) {
  114. this._debug('Navigation selector not found');
  115. return false;
  116. }
  117. // Set the path to be a relative URL from root.
  118. opts.path = opts.path || this._determinepath(path);
  119. // contentSelector is 'page fragment' option for .load() / .ajax() calls
  120. opts.contentSelector = opts.contentSelector || this.element;
  121. // loading.selector - if we want to place the load message in a specific selector, defaulted to the contentSelector
  122. opts.loading.selector = opts.loading.selector || opts.contentSelector;
  123. // Define loading.msg
  124. opts.loading.msg = opts.loading.msg || $('<div id="infscr-loading"><img alt="Loading..." src="' + opts.loading.img + '" /><div>' + opts.loading.msgText + '</div></div>');
  125. // Preload loading.img
  126. (new Image()).src = opts.loading.img;
  127. // distance from nav links to bottom
  128. // computed as: height of the document + top offset of container - top offset of nav link
  129. if(opts.pixelsFromNavToBottom === undefined) {
  130. opts.pixelsFromNavToBottom = $(document).height() - $(opts.navSelector).offset().top;
  131. this._debug('pixelsFromNavToBottom: ' + opts.pixelsFromNavToBottom);
  132. }
  133. var self = this;
  134. // determine loading.start actions
  135. opts.loading.start = opts.loading.start || function() {
  136. $(opts.navSelector).hide();
  137. opts.loading.msg
  138. .appendTo(opts.loading.selector)
  139. .show(opts.loading.speed, $.proxy(function() {
  140. this.beginAjax(opts);
  141. }, self));
  142. };
  143. // determine loading.finished actions
  144. opts.loading.finished = opts.loading.finished || function() {
  145. if (!opts.state.isBeyondMaxPage)
  146. opts.loading.msg.fadeOut(opts.loading.speed);
  147. };
  148. // callback loading
  149. opts.callback = function(instance, data, url) {
  150. if (!!opts.behavior && instance['_callback_'+opts.behavior] !== undefined) {
  151. instance['_callback_'+opts.behavior].call($(opts.contentSelector)[0], data, url);
  152. }
  153. if (callback) {
  154. callback.call($(opts.contentSelector)[0], data, opts, url);
  155. }
  156. if (opts.prefill) {
  157. $window.bind('resize.infinite-scroll', instance._prefill);
  158. }
  159. };
  160. if (options.debug) {
  161. // Tell IE9 to use its built-in console
  162. if (Function.prototype.bind && (typeof console === 'object' || typeof console === 'function') && typeof console.log === 'object') {
  163. ['log','info','warn','error','assert','dir','clear','profile','profileEnd']
  164. .forEach(function (method) {
  165. console[method] = this.call(console[method], console);
  166. }, Function.prototype.bind);
  167. }
  168. }
  169. this._setup();
  170. // Setups the prefill method for use
  171. if (opts.prefill) {
  172. this._prefill();
  173. }
  174. // Return true to indicate successful creation
  175. return true;
  176. },
  177. _prefill: function infscr_prefill() {
  178. var instance = this;
  179. var $window = $(window);
  180. function needsPrefill() {
  181. return ( $(instance.options.contentSelector).height() <= $window.height() );
  182. }
  183. this._prefill = function() {
  184. if (needsPrefill()) {
  185. instance.scroll();
  186. }
  187. $window.bind('resize.infinite-scroll', function() {
  188. if (needsPrefill()) {
  189. $window.unbind('resize.infinite-scroll');
  190. instance.scroll();
  191. }
  192. });
  193. };
  194. // Call self after setting up the new function
  195. this._prefill();
  196. },
  197. // Console log wrapper
  198. _debug: function infscr_debug() {
  199. if (true !== this.options.debug) {
  200. return;
  201. }
  202. if (typeof console !== 'undefined' && typeof console.log === 'function') {
  203. // Modern browsers
  204. // Single argument, which is a string
  205. if ((Array.prototype.slice.call(arguments)).length === 1 && typeof Array.prototype.slice.call(arguments)[0] === 'string') {
  206. console.log( (Array.prototype.slice.call(arguments)).toString() );
  207. } else {
  208. console.log( Array.prototype.slice.call(arguments) );
  209. }
  210. } else if (!Function.prototype.bind && typeof console !== 'undefined' && typeof console.log === 'object') {
  211. // IE8
  212. Function.prototype.call.call(console.log, console, Array.prototype.slice.call(arguments));
  213. }
  214. },
  215. // find the number to increment in the path.
  216. _determinepath: function infscr_determinepath(path) {
  217. var opts = this.options;
  218. // if behavior is defined and this function is extended, call that instead of default
  219. if (!!opts.behavior && this['_determinepath_'+opts.behavior] !== undefined) {
  220. return this['_determinepath_'+opts.behavior].call(this,path);
  221. }
  222. if (!!opts.pathParse) {
  223. this._debug('pathParse manual');
  224. return opts.pathParse(path, this.options.state.currPage+1);
  225. } else if (path.match(/^(.*?)\b2\b(.*?$)/)) {
  226. path = path.match(/^(.*?)\b2\b(.*?$)/).slice(1);
  227. // if there is any 2 in the url at all.
  228. } else if (path.match(/^(.*?)2(.*?$)/)) {
  229. // page= is used in django:
  230. // http://www.infinite-scroll.com/changelog/comment-page-1/#comment-127
  231. if (path.match(/^(.*?page=)2(\/.*|$)/)) {
  232. path = path.match(/^(.*?page=)2(\/.*|$)/).slice(1);
  233. return path;
  234. }
  235. path = path.match(/^(.*?)2(.*?$)/).slice(1);
  236. } else {
  237. // page= is used in drupal too but second page is page=1 not page=2:
  238. // thx Jerod Fritz, vladikoff
  239. if (path.match(/^(.*?page=)1(\/.*|$)/)) {
  240. path = path.match(/^(.*?page=)1(\/.*|$)/).slice(1);
  241. return path;
  242. } else {
  243. this._debug("Sorry, we couldn't parse your Next (Previous Posts) URL. Verify your the css selector points to the correct A tag. If you still get this error: yell, scream, and kindly ask for help at infinite-scroll.com.");
  244. // Get rid of isInvalidPage to allow permalink to state
  245. opts.state.isInvalidPage = true; //prevent it from running on this page.
  246. }
  247. }
  248. this._debug('determinePath', path);
  249. return path;
  250. },
  251. // Custom error
  252. _error: function infscr_error(xhr) {
  253. var opts = this.options;
  254. // if behavior is defined and this function is extended, call that instead of default
  255. if (!!opts.behavior && this['_error_'+opts.behavior] !== undefined) {
  256. this['_error_'+opts.behavior].call(this,xhr);
  257. return;
  258. }
  259. if (xhr !== 'destroy' && xhr !== 'end') {
  260. xhr = 'unknown';
  261. }
  262. this._debug('Error', xhr);
  263. if (xhr === 'end' || opts.state.isBeyondMaxPage) {
  264. this._showdonemsg();
  265. }
  266. opts.state.isDone = true;
  267. opts.state.currPage = 1; // if you need to go back to this instance
  268. opts.state.isPaused = false;
  269. opts.state.isBeyondMaxPage = false;
  270. this._binding('unbind');
  271. },
  272. // Load Callback
  273. _loadcallback: function infscr_loadcallback(box, data, url) {
  274. var opts = this.options,
  275. callback = this.options.callback, // GLOBAL OBJECT FOR CALLBACK
  276. result = (opts.state.isDone) ? 'done' : (!opts.appendCallback) ? 'no-append' : 'append',
  277. frag;
  278. // if behavior is defined and this function is extended, call that instead of default
  279. if (!!opts.behavior && this['_loadcallback_'+opts.behavior] !== undefined) {
  280. this['_loadcallback_'+opts.behavior].call(this,box,data,url);
  281. return;
  282. }
  283. switch (result) {
  284. case 'done':
  285. this._showdonemsg();
  286. return false;
  287. case 'no-append':
  288. if (opts.dataType === 'html') {
  289. data = '<div>' + data + '</div>';
  290. data = $(data).find(opts.itemSelector);
  291. }
  292. // if it didn't return anything
  293. if (data.length === 0) {
  294. return this._error('end');
  295. }
  296. break;
  297. case 'append':
  298. var children = box.children();
  299. // if it didn't return anything
  300. if (children.length === 0) {
  301. return this._error('end');
  302. }
  303. // use a documentFragment because it works when content is going into a table or UL
  304. frag = document.createDocumentFragment();
  305. while (box[0].firstChild) {
  306. frag.appendChild(box[0].firstChild);
  307. }
  308. this._debug('contentSelector', $(opts.contentSelector)[0]);
  309. $(opts.contentSelector)[0].appendChild(frag);
  310. // previously, we would pass in the new DOM element as context for the callback
  311. // however we're now using a documentfragment, which doesn't have parents or children,
  312. // so the context is the contentContainer guy, and we pass in an array
  313. // of the elements collected as the first argument.
  314. data = children.get();
  315. break;
  316. }
  317. // loadingEnd function
  318. opts.loading.finished.call($(opts.contentSelector)[0],opts);
  319. // smooth scroll to ease in the new content
  320. if (opts.animate) {
  321. var scrollTo = $(window).scrollTop() + $(opts.loading.msg).height() + opts.extraScrollPx + 'px';
  322. $('html,body').animate({ scrollTop: scrollTo }, 800, function () { opts.state.isDuringAjax = false; });
  323. }
  324. if (!opts.animate) {
  325. // once the call is done, we can allow it again.
  326. opts.state.isDuringAjax = false;
  327. }
  328. callback(this, data, url);
  329. if (opts.prefill) {
  330. this._prefill();
  331. }
  332. },
  333. _nearbottom: function infscr_nearbottom() {
  334. var opts = this.options,
  335. pixelsFromWindowBottomToBottom = 0 + $(document).height() - (opts.binder.scrollTop()) - $(window).height();
  336. // if behavior is defined and this function is extended, call that instead of default
  337. if (!!opts.behavior && this['_nearbottom_'+opts.behavior] !== undefined) {
  338. return this['_nearbottom_'+opts.behavior].call(this);
  339. }
  340. this._debug('math:', pixelsFromWindowBottomToBottom, opts.pixelsFromNavToBottom);
  341. // if distance remaining in the scroll (including buffer) is less than the orignal nav to bottom....
  342. return (pixelsFromWindowBottomToBottom - opts.bufferPx < opts.pixelsFromNavToBottom);
  343. },
  344. // Pause / temporarily disable plugin from firing
  345. _pausing: function infscr_pausing(pause) {
  346. var opts = this.options;
  347. // if behavior is defined and this function is extended, call that instead of default
  348. if (!!opts.behavior && this['_pausing_'+opts.behavior] !== undefined) {
  349. this['_pausing_'+opts.behavior].call(this,pause);
  350. return;
  351. }
  352. // If pause is not 'pause' or 'resume', toggle it's value
  353. if (pause !== 'pause' && pause !== 'resume' && pause !== null) {
  354. this._debug('Invalid argument. Toggling pause value instead');
  355. }
  356. pause = (pause && (pause === 'pause' || pause === 'resume')) ? pause : 'toggle';
  357. switch (pause) {
  358. case 'pause':
  359. opts.state.isPaused = true;
  360. break;
  361. case 'resume':
  362. opts.state.isPaused = false;
  363. break;
  364. case 'toggle':
  365. opts.state.isPaused = !opts.state.isPaused;
  366. break;
  367. }
  368. this._debug('Paused', opts.state.isPaused);
  369. return false;
  370. },
  371. // Behavior is determined
  372. // If the behavior option is undefined, it will set to default and bind to scroll
  373. _setup: function infscr_setup() {
  374. var opts = this.options;
  375. // if behavior is defined and this function is extended, call that instead of default
  376. if (!!opts.behavior && this['_setup_'+opts.behavior] !== undefined) {
  377. this['_setup_'+opts.behavior].call(this);
  378. return;
  379. }
  380. this._binding('bind');
  381. return false;
  382. },
  383. // Show done message
  384. _showdonemsg: function infscr_showdonemsg() {
  385. var opts = this.options;
  386. // if behavior is defined and this function is extended, call that instead of default
  387. if (!!opts.behavior && this['_showdonemsg_'+opts.behavior] !== undefined) {
  388. this['_showdonemsg_'+opts.behavior].call(this);
  389. return;
  390. }
  391. opts.loading.msg
  392. .find('img')
  393. .hide()
  394. .parent()
  395. .find('div').html(opts.loading.finishedMsg).animate({ opacity: 1 }, 2000, function () {
  396. $(this).parent().fadeOut(opts.loading.speed);
  397. });
  398. // user provided callback when done
  399. opts.errorCallback.call($(opts.contentSelector)[0],'done');
  400. },
  401. // grab each selector option and see if any fail
  402. _validate: function infscr_validate(opts) {
  403. for (var key in opts) {
  404. if (key.indexOf && key.indexOf('Selector') > -1 && $(opts[key]).length === 0) {
  405. this._debug('Your ' + key + ' found no elements.');
  406. return false;
  407. }
  408. }
  409. return true;
  410. },
  411. /*
  412. ----------------------------
  413. Public methods
  414. ----------------------------
  415. */
  416. // Bind to scroll
  417. bind: function infscr_bind() {
  418. this._binding('bind');
  419. },
  420. // Destroy current instance of plugin
  421. destroy: function infscr_destroy() {
  422. this.options.state.isDestroyed = true;
  423. this.options.loading.finished();
  424. return this._error('destroy');
  425. },
  426. // Set pause value to false
  427. pause: function infscr_pause() {
  428. this._pausing('pause');
  429. },
  430. // Set pause value to false
  431. resume: function infscr_resume() {
  432. this._pausing('resume');
  433. },
  434. beginAjax: function infscr_ajax(opts) {
  435. var instance = this,
  436. path = opts.path,
  437. box, desturl, method, condition;
  438. // increment the URL bit. e.g. /page/3/
  439. opts.state.currPage++;
  440. // Manually control maximum page
  441. if ( opts.maxPage !== undefined && opts.state.currPage > opts.maxPage ){
  442. opts.state.isBeyondMaxPage = true;
  443. this.destroy();
  444. return;
  445. }
  446. // if we're dealing with a table we can't use DIVs
  447. box = $(opts.contentSelector).is('table, tbody') ? $('<tbody/>') : $('<div/>');
  448. desturl = (typeof path === 'function') ? path(opts.state.currPage) : path.join(opts.state.currPage);
  449. instance._debug('heading into ajax', desturl);
  450. method = (opts.dataType === 'html' || opts.dataType === 'json' ) ? opts.dataType : 'html+callback';
  451. if (opts.appendCallback && opts.dataType === 'html') {
  452. method += '+callback';
  453. }
  454. switch (method) {
  455. case 'html+callback':
  456. instance._debug('Using HTML via .load() method');
  457. box.load(desturl + ' ' + opts.itemSelector, undefined, function infscr_ajax_callback(responseText) {
  458. instance._loadcallback(box, responseText, desturl);
  459. });
  460. break;
  461. case 'html':
  462. instance._debug('Using ' + (method.toUpperCase()) + ' via $.ajax() method');
  463. $.ajax({
  464. // params
  465. url: desturl,
  466. dataType: opts.dataType,
  467. complete: function infscr_ajax_callback(jqXHR, textStatus) {
  468. condition = (typeof (jqXHR.isResolved) !== 'undefined') ? (jqXHR.isResolved()) : (textStatus === 'success' || textStatus === 'notmodified');
  469. if (condition) {
  470. instance._loadcallback(box, jqXHR.responseText, desturl);
  471. } else {
  472. instance._error('end');
  473. }
  474. }
  475. });
  476. break;
  477. case 'json':
  478. instance._debug('Using ' + (method.toUpperCase()) + ' via $.ajax() method');
  479. $.ajax({
  480. dataType: 'json',
  481. type: 'GET',
  482. url: desturl,
  483. success: function (data, textStatus, jqXHR) {
  484. condition = (typeof (jqXHR.isResolved) !== 'undefined') ? (jqXHR.isResolved()) : (textStatus === 'success' || textStatus === 'notmodified');
  485. if (opts.appendCallback) {
  486. // if appendCallback is true, you must defined template in options.
  487. // note that data passed into _loadcallback is already an html (after processed in opts.template(data)).
  488. if (opts.template !== undefined) {
  489. var theData = opts.template(data);
  490. box.append(theData);
  491. if (condition) {
  492. instance._loadcallback(box, theData);
  493. } else {
  494. instance._error('end');
  495. }
  496. } else {
  497. instance._debug('template must be defined.');
  498. instance._error('end');
  499. }
  500. } else {
  501. // if appendCallback is false, we will pass in the JSON object. you should handle it yourself in your callback.
  502. if (condition) {
  503. instance._loadcallback(box, data, desturl);
  504. } else {
  505. instance._error('end');
  506. }
  507. }
  508. },
  509. error: function() {
  510. instance._debug('JSON ajax request failed.');
  511. instance._error('end');
  512. }
  513. });
  514. break;
  515. }
  516. },
  517. // Retrieve next set of content items
  518. retrieve: function infscr_retrieve(pageNum) {
  519. pageNum = pageNum || null;
  520. var instance = this,
  521. opts = instance.options;
  522. // if behavior is defined and this function is extended, call that instead of default
  523. if (!!opts.behavior && this['retrieve_'+opts.behavior] !== undefined) {
  524. this['retrieve_'+opts.behavior].call(this,pageNum);
  525. return;
  526. }
  527. // for manual triggers, if destroyed, get out of here
  528. if (opts.state.isDestroyed) {
  529. this._debug('Instance is destroyed');
  530. return false;
  531. }
  532. // we dont want to fire the ajax multiple times
  533. opts.state.isDuringAjax = true;
  534. opts.loading.start.call($(opts.contentSelector)[0],opts);
  535. },
  536. // Check to see next page is needed
  537. scroll: function infscr_scroll() {
  538. var opts = this.options,
  539. state = opts.state;
  540. // if behavior is defined and this function is extended, call that instead of default
  541. if (!!opts.behavior && this['scroll_'+opts.behavior] !== undefined) {
  542. this['scroll_'+opts.behavior].call(this);
  543. return;
  544. }
  545. if (state.isDuringAjax || state.isInvalidPage || state.isDone || state.isDestroyed || state.isPaused) {
  546. return;
  547. }
  548. if (!this._nearbottom()) {
  549. return;
  550. }
  551. this.retrieve();
  552. },
  553. // Toggle pause value
  554. toggle: function infscr_toggle() {
  555. this._pausing();
  556. },
  557. // Unbind from scroll
  558. unbind: function infscr_unbind() {
  559. this._binding('unbind');
  560. },
  561. // update options
  562. update: function infscr_options(key) {
  563. if ($.isPlainObject(key)) {
  564. this.options = $.extend(true,this.options,key);
  565. }
  566. }
  567. };
  568. /*
  569. ----------------------------
  570. Infinite Scroll function
  571. ----------------------------
  572. Borrowed logic from the following...
  573. jQuery UI
  574. - https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.widget.js
  575. jCarousel
  576. - https://github.com/jsor/jcarousel/blob/master/lib/jquery.jcarousel.js
  577. Masonry
  578. - https://github.com/desandro/masonry/blob/master/jquery.masonry.js
  579. */
  580. $.fn.infinitescroll = function infscr_init(options, callback) {
  581. var thisCall = typeof options;
  582. switch (thisCall) {
  583. // method
  584. case 'string':
  585. var args = Array.prototype.slice.call(arguments, 1);
  586. this.each(function () {
  587. var instance = $.data(this, 'infinitescroll');
  588. if (!instance) {
  589. // not setup yet
  590. // return $.error('Method ' + options + ' cannot be called until Infinite Scroll is setup');
  591. return false;
  592. }
  593. if (!$.isFunction(instance[options]) || options.charAt(0) === '_') {
  594. // return $.error('No such method ' + options + ' for Infinite Scroll');
  595. return false;
  596. }
  597. // no errors!
  598. instance[options].apply(instance, args);
  599. });
  600. break;
  601. // creation
  602. case 'object':
  603. this.each(function () {
  604. var instance = $.data(this, 'infinitescroll');
  605. if (instance) {
  606. // update options of current instance
  607. instance.update(options);
  608. } else {
  609. // initialize new instance
  610. instance = new $.infinitescroll(options, callback, this);
  611. // don't attach if instantiation failed
  612. if (!instance.failed) {
  613. $.data(this, 'infinitescroll', instance);
  614. }
  615. }
  616. });
  617. break;
  618. }
  619. return this;
  620. };
  621. /*
  622. * smartscroll: debounced scroll event for jQuery *
  623. * https://github.com/lukeshumard/smartscroll
  624. * Based on smartresize by @louis_remi: https://github.com/lrbabe/jquery.smartresize.js *
  625. * Copyright 2011 Louis-Remi & Luke Shumard * Licensed under the MIT license. *
  626. */
  627. var event = $.event,
  628. scrollTimeout;
  629. event.special.smartscroll = {
  630. setup: function () {
  631. $(this).bind('scroll', event.special.smartscroll.handler);
  632. },
  633. teardown: function () {
  634. $(this).unbind('scroll', event.special.smartscroll.handler);
  635. },
  636. handler: function (event, execAsap) {
  637. // Save the context
  638. var context = this,
  639. args = arguments;
  640. // set correct event type
  641. event.type = 'smartscroll';
  642. if (scrollTimeout) { clearTimeout(scrollTimeout); }
  643. scrollTimeout = setTimeout(function () {
  644. $(context).trigger('smartscroll', args);
  645. }, execAsap === 'execAsap' ? 0 : 100);
  646. }
  647. };
  648. $.fn.smartscroll = function (fn) {
  649. return fn ? this.bind('smartscroll', fn) : this.trigger('smartscroll', ['execAsap']);
  650. };
  651. }));