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