From 5cc2273851473e88ff4c6a6577cc4a5ad3d7b4f6 Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Wed, 20 Apr 2016 10:34:40 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20update=20README=20for=20v3;=20.m?= =?UTF-8?q?down=20->=20.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.mdown => README.md | 26 ++++++++++---------------- gulpfile.js | 2 +- 2 files changed, 11 insertions(+), 17 deletions(-) rename README.mdown => README.md (62%) diff --git a/README.mdown b/README.md similarity index 62% rename from README.mdown rename to README.md index 0f5aacd..e53cc2e 100644 --- a/README.mdown +++ b/README.md @@ -8,25 +8,25 @@ See [isotope.metafizzy.co](http://isotope.metafizzy.co) for complete docs and de ### Download -+ [isotope.pkgd.js](https://github.com/metafizzy/isotope/raw/master/dist/isotope.pkgd.js) un-minified, or -+ [isotope.pkgd.min.js](https://github.com/metafizzy/isotope/raw/master/dist/isotope.pkgd.min.js) minified ++ [isotope.pkgd.js](https://npmcdn.com/isotope-layout@3/dist/isotope.pkgd.js) un-minified, or ++ [isotope.pkgd.min.js](https://npmcdn.com/isotope-layout@3/dist/isotope.pkgd.min.js) minified ### CDN Link directly to [Isotope files on cdnjs](https://cdnjs.com/libraries/jquery.isotope). ``` html - + - + ``` ### Package managers -Bower: `bower install isotope --save` - npm: `npm install isotope-layout --save` +Bower: `bower install isotope --save` + ## License ### Commercial license @@ -69,23 +69,17 @@ var iso = new Isotope( grid, { With HTML -Add a class of `js-isotope` to your element. Options can be set in JSON in `data-isotope-options`. +Add a `data-isotope` attribute to your element. Options can be set in JSON in the value. ``` html -
+
...
``` -## Support - -[CodersClan has a dedicated support forum for Isotope](https://www.codersclan.net/?repo_id=1), where you can get personal support from experienced developers. - -#### [Get support on CodersClan](https://www.codersclan.net/?repo_id=1) - * * * -By [Metafizzy](http://metafizzy.co) +By [Metafizzy](http://metafizzy.co), 2010–2016 diff --git a/gulpfile.js b/gulpfile.js index 3b3d77c..e5a54f9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -122,7 +122,7 @@ gulp.task( 'version', function() { .pipe( gulp.dest('.') ); // replace CDN links in README var minorVersion = version.match( /^\d\.\d+/ )[0]; - gulp.src('README.mdown') + gulp.src('README.md') .pipe( replace( /isotope-layout@\d\.\d+/g, 'isotope-layout@' + minorVersion )) .pipe( gulp.dest('.') ); });