Browse Source

works with bower

pull/694/head
Troy Warr 12 years ago
parent
commit
1cb6d08302
  1. 12
      component.json
  2. 30
      jquery.isotope.js

12
component.json

@ -0,0 +1,12 @@
{
"name": "isotope",
"version": "1.5.25",
"main": "./jquery.isotope.js",
"dependencies": {
"jquery": "~1.9.1"
},
"repository": {
"type": "git",
"url": "git@github.com:desandro/isotope.git"
}
}

30
jquery.isotope.js

@ -1,20 +1,24 @@
/** define([
'jquery'
], function(jQuery) {
/**
* Isotope v1.5.25 * Isotope v1.5.25
* An exquisite jQuery plugin for magical layouts * An exquisite jQuery plugin for magical layouts
* http://isotope.metafizzy.co * http://isotope.metafizzy.co
* *
* Commercial use requires one-time purchase of a commercial license * Commercial use requires one-time license fee
* http://isotope.metafizzy.co/docs/license.html * http://metafizzy.co/#licenses
* *
* Non-commercial use is licensed under the MIT License * Copyright 2012 David DeSandro / Metafizzy
*
* Copyright 2013 Metafizzy
*/ */
/*jshint asi: true, browser: true, curly: true, eqeqeq: true, forin: false, immed: false, newcap: true, noempty: true, strict: true, undef: true */ /*jshint asi: true, browser: true, curly: true, eqeqeq: true, forin: false, immed: false, newcap: true, noempty: true, strict: true, undef: true */
/*global jQuery: false */ /*global jQuery: false */
(function( window, $, undefined ){ (function( window, $, undefined ){
'use strict'; 'use strict';
@ -313,7 +317,7 @@
// ========================= Isotope =============================== // ========================= Isotope ===============================
// our "Widget" object constructor // our "Widget" object constructor
@ -1406,4 +1410,8 @@
return this; return this;
}; };
})( window, jQuery ); })( window, jQuery );
});

Loading…
Cancel
Save