Skip to content

Commit

Permalink
👷 build v3.0.2;
Browse files Browse the repository at this point in the history
update jQuery Bridget, fixes #1157
  • Loading branch information
desandro committed Jan 26, 2017
1 parent 64f409f commit 2dd9d6d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
22 changes: 11 additions & 11 deletions dist/isotope.pkgd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Isotope PACKAGED v3.0.1
* Isotope PACKAGED v3.0.2
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use
Expand All @@ -10,20 +10,19 @@

/**
* Bridget makes jQuery widgets
* v2.0.0
* v2.0.1
* MIT license
*/

/* jshint browser: true, strict: true, undef: true, unused: true */

( function( window, factory ) {
'use strict';
/* globals define: false, module: false, require: false */

// universal module definition
/*jshint strict: false */ /* globals define, module, require */
if ( typeof define == 'function' && define.amd ) {
// AMD
define( 'jquery-bridget/jquery-bridget',[ 'jquery' ], function( jQuery ) {
factory( window, jQuery );
return factory( window, jQuery );
});
} else if ( typeof module == 'object' && module.exports ) {
// CommonJS
Expand Down Expand Up @@ -528,7 +527,7 @@ return getSize;
}));

/**
* Fizzy UI utils v2.0.2
* Fizzy UI utils v2.0.3
* MIT license
*/

Expand Down Expand Up @@ -701,7 +700,8 @@ utils.debounceMethod = function( _class, methodName, threshold ) {
utils.docReady = function( callback ) {
var readyState = document.readyState;
if ( readyState == 'complete' || readyState == 'interactive' ) {
callback();
// do async to allow for other scripts to run. metafizzy/flickity#441
setTimeout( callback );
} else {
document.addEventListener( 'DOMContentLoaded', callback );
}
Expand Down Expand Up @@ -749,7 +749,7 @@ utils.htmlInit = function( WidgetClass, namespace ) {
}
// initialize
var instance = new WidgetClass( elem, options );
// make available via $().data('layoutname')
// make available via $().data('namespace')
if ( jQuery ) {
jQuery.data( elem, namespace, instance );
}
Expand Down Expand Up @@ -2495,7 +2495,7 @@ return Item;
}));

/*!
* Masonry v4.1.0
* Masonry v4.1.1
* Cascading grid layout library
* http://masonry.desandro.com
* MIT License
Expand Down Expand Up @@ -2900,7 +2900,7 @@ return Vertical;
}));

/*!
* Isotope v3.0.1
* Isotope v3.0.2
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use
Expand Down
6 changes: 3 additions & 3 deletions dist/isotope.pkgd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ gulp.task( 'version', function() {
gutil.log( 'ticking version to ' + chalk.green( version ) );

gulp.src('js/isotope.js')
.pipe( replace( /Packery v\d\.\d+\.\d+/, 'Isotope v' + version ) )
.pipe( replace( /Isotope v\d\.\d+\.\d+/, 'Isotope v' + version ) )
.pipe( gulp.dest('js') );

gulp.src( [ 'package.json' ] )
Expand Down
2 changes: 1 addition & 1 deletion js/isotope.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Isotope v3.0.1
* Isotope v3.0.2
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isotope-layout",
"version": "3.0.1",
"version": "3.0.2",
"description": "Filter and sort magical layouts",
"main": "js/isotope.js",
"dependencies": {
Expand Down

0 comments on commit 2dd9d6d

Please sign in to comment.