Browse Source

👷 build v3.0.2;

update jQuery Bridget, fixes #1157
pull/427/merge v3.0.2
David DeSandro 8 years ago
parent
commit
2dd9d6d7ad
  1. 22
      dist/isotope.pkgd.js
  2. 6
      dist/isotope.pkgd.min.js
  3. 2
      gulpfile.js
  4. 2
      js/isotope.js
  5. 2
      package.json

22
dist/isotope.pkgd.js vendored

@ -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
@ -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
@ -528,7 +527,7 @@ return getSize;
}));
/**
* Fizzy UI utils v2.0.2
* Fizzy UI utils v2.0.3
* MIT license
*/
@ -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 );
}
@ -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 );
}
@ -2495,7 +2495,7 @@ return Item;
}));
/*!
* Masonry v4.1.0
* Masonry v4.1.1
* Cascading grid layout library
* http://masonry.desandro.com
* MIT License
@ -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

6
dist/isotope.pkgd.min.js vendored

File diff suppressed because one or more lines are too long

2
gulpfile.js

@ -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' ] )

2
js/isotope.js

@ -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

2
package.json

@ -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": {

Loading…
Cancel
Save