Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions masonry.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Masonry v4.2.2
* Masonry v4.2.2--test
* Cascading grid layout library
* https://masonry.desandro.com
* MIT License
* by David DeSandro
*/

( function( window, factory ) {
(typeof window !== 'undefined' && typeof window !== null) && (function( window, factory ) {
// universal module definition
/* jshint strict: false */ /*globals define, module, require */
if ( typeof define == 'function' && define.amd ) {
Expand All @@ -30,7 +30,7 @@
);
}

}( window, function factory( Outlayer, getSize ) {
}( (typeof window !== 'undefined') && window, function factory( Outlayer, getSize ) {

'use strict';

Expand Down