Browse Source

tick beta version v2.1.0-beta.1

Try npm release

Update deps:

+ jQuery Bridget v1.1.0
+ docReady v1.0.4
+ EventEmitter v4.2.9
+ getSize v1.2.0
+ matchesSelector v1.0.2
+ Outlayer v1.3.0
+ Masonry v3.2.1
pull/829/head v2.1.0-beta.1
David DeSandro 10 years ago
parent
commit
b2c4df979c
  1. 8
      README.mdown
  2. 2
      bower.json
  3. 1188
      dist/isotope.pkgd.js
  4. 6
      dist/isotope.pkgd.min.js
  5. 2
      js/isotope.js
  6. 3
      package.json
  7. 2
      sandbox/browserify/main.js

8
README.mdown

@ -11,13 +11,11 @@ A packaged source file includes everything you need to use Isotope.
+ [isotope.pkgd.js](http://isotope.metafizzy.co/isotope.pkgd.js)
+ [isotope.pkgd.min.js](http://isotope.metafizzy.co/isotope.pkgd.min.js)
### Bower
If you are cool with the command line...
If you are cool with the command line, install Isotope as a [Bower](http://bower.io) package:
Install with [Bower](http://bower.io): `bower install isotope`
``` bash
bower install isotope
```
[Install with npm](https://www.npmjs.org/package/isotope-layout): `npm install isotope-layout`
## License

2
bower.json

@ -1,6 +1,6 @@
{
"name": "isotope",
"version": "2.0.1",
"version": "2.1.0-beta.1",
"description": "Filter and sort magical layouts",
"main": [
"js/item.js",

1188
dist/isotope.pkgd.js vendored

File diff suppressed because it is too large Load Diff

6
dist/isotope.pkgd.min.js vendored

File diff suppressed because one or more lines are too long

2
js/isotope.js

@ -1,5 +1,5 @@
/*!
* Isotope v2.0.1
* Isotope v2.1.0-beta.1
* Filter & sort magical layouts
* http://isotope.metafizzy.co
*/

3
package.json

@ -1,6 +1,6 @@
{
"name": "isotope-layout",
"version": "2.0.1",
"version": "2.1.0-beta.1",
"description": "Filter and sort magical layouts",
"dependencies": {
"get-size": ">=1.1.8 <1.3",
@ -12,6 +12,7 @@
"desandro-matches-selector": "^1.0.2",
"doc-ready": "1.x",
"eventie": "^1.0.5",
"isotope-cells-by-column": "*",
"jquery": ">=1.4.3 <2",
"jquery-bridget": "1.1.x",
"qunitjs": "^1.15",

2
sandbox/browserify/main.js

@ -2,6 +2,8 @@ var Isotope = window.Isotope = require('../../js/isotope');
var eventie = require('eventie');
var matchesSelector = require('desandro-matches-selector');
// require('isotope-cells-by-row');
function getText( elem ) {
return elem.textContent || elem.innerText;
}

Loading…
Cancel
Save