Skip to content

Commit

Permalink
πŸ‘¨β€πŸš’ build v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Aug 28, 2018
1 parent 50279fb commit c1ca3e7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
11 changes: 9 additions & 2 deletions dist/infinite-scroll.pkgd.js
@@ -1,5 +1,5 @@
/*!
* Infinite Scroll PACKAGED v3.0.4
* Infinite Scroll PACKAGED v3.0.5
* Automatically add next page
*
* Licensed GPLv3 for open source use
Expand Down Expand Up @@ -896,6 +896,10 @@ proto.destroy = function() {

delete this.element.infiniteScrollGUID;
delete instances[ this.guid ];
// remove jQuery data. #807
if ( jQuery && this.$element ) {
jQuery.removeData( this.element, 'infiniteScroll' );
}
};

// -------------------------- utilities -------------------------- //
Expand Down Expand Up @@ -937,6 +941,9 @@ InfiniteScroll.setJQuery = function( $ ) {

utils.htmlInit( InfiniteScroll, 'infinite-scroll' );

// add noop _init method for jQuery Bridget. #768
proto._init = function() {};

if ( jQuery && jQuery.bridget ) {
jQuery.bridget( 'infiniteScroll', InfiniteScroll );
}
Expand Down Expand Up @@ -1778,7 +1785,7 @@ return InfiniteScroll;
}));

/*!
* Infinite Scroll v3.0.4
* Infinite Scroll v3.0.5
* Automatically add next page
*
* Licensed GPLv3 for open source use
Expand Down

0 comments on commit c1ca3e7

Please sign in to comment.