Skip to content

Commit 2dd9d6d

Browse files
committed
👷 build v3.0.2;
update jQuery Bridget, fixes #1157
1 parent 64f409f commit 2dd9d6d

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

‎dist/isotope.pkgd.js‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Isotope PACKAGED v3.0.1
2+
* Isotope PACKAGED v3.0.2
33
*
44
* Licensed GPLv3 for open source use
55
* or Isotope Commercial License for commercial use
@@ -10,20 +10,19 @@
1010

1111
/**
1212
* Bridget makes jQuery widgets
13-
* v2.0.0
13+
* v2.0.1
1414
* MIT license
1515
*/
1616

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

1919
( function( window, factory ) {
20-
'use strict';
21-
/* globals define: false, module: false, require: false */
22-
20+
// universal module definition
21+
/*jshint strict: false */ /* globals define, module, require */
2322
if ( typeof define == 'function' && define.amd ) {
2423
// AMD
2524
define( 'jquery-bridget/jquery-bridget',[ 'jquery' ], function( jQuery ) {
26-
factory( window, jQuery );
25+
return factory( window, jQuery );
2726
});
2827
} else if ( typeof module == 'object' && module.exports ) {
2928
// CommonJS
@@ -528,7 +527,7 @@ return getSize;
528527
}));
529528

530529
/**
531-
* Fizzy UI utils v2.0.2
530+
* Fizzy UI utils v2.0.3
532531
* MIT license
533532
*/
534533

@@ -701,7 +700,8 @@ utils.debounceMethod = function( _class, methodName, threshold ) {
701700
utils.docReady = function( callback ) {
702701
var readyState = document.readyState;
703702
if ( readyState == 'complete' || readyState == 'interactive' ) {
704-
callback();
703+
// do async to allow for other scripts to run. metafizzy/flickity#441
704+
setTimeout( callback );
705705
} else {
706706
document.addEventListener( 'DOMContentLoaded', callback );
707707
}
@@ -749,7 +749,7 @@ utils.htmlInit = function( WidgetClass, namespace ) {
749749
}
750750
// initialize
751751
var instance = new WidgetClass( elem, options );
752-
// make available via $().data('layoutname')
752+
// make available via $().data('namespace')
753753
if ( jQuery ) {
754754
jQuery.data( elem, namespace, instance );
755755
}
@@ -2495,7 +2495,7 @@ return Item;
24952495
}));
24962496

24972497
/*!
2498-
* Masonry v4.1.0
2498+
* Masonry v4.1.1
24992499
* Cascading grid layout library
25002500
* http://masonry.desandro.com
25012501
* MIT License
@@ -2900,7 +2900,7 @@ return Vertical;
29002900
}));
29012901

29022902
/*!
2903-
* Isotope v3.0.1
2903+
* Isotope v3.0.2
29042904
*
29052905
* Licensed GPLv3 for open source use
29062906
* or Isotope Commercial License for commercial use

‎dist/isotope.pkgd.min.js‎

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎gulpfile.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ gulp.task( 'version', function() {
121121
gutil.log( 'ticking version to ' + chalk.green( version ) );
122122

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

127127
gulp.src( [ 'package.json' ] )

‎js/isotope.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Isotope v3.0.1
2+
* Isotope v3.0.2
33
*
44
* Licensed GPLv3 for open source use
55
* or Isotope Commercial License for commercial use

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isotope-layout",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Filter and sort magical layouts",
55
"main": "js/isotope.js",
66
"dependencies": {

0 commit comments

Comments
 (0)