Browse Source

docs : copy edits, adding links

pull/14/head
David DeSandro 14 years ago
parent
commit
4fd85657b2
  1. 2
      _posts/demos/2010-12-31-relayout.html
  2. 2
      _posts/demos/2011-01-02-infinite-scroll.html
  3. 10
      _posts/docs/2010-12-01-introduction.mdown
  4. 2
      _posts/docs/2010-12-06-filtering.mdown
  5. 4
      _posts/docs/2010-12-07-sorting.mdown
  6. 4
      _posts/docs/2010-12-20-license.mdown
  7. 12
      css/style.css

2
_posts/demos/2010-12-31-relayout.html

@ -6,7 +6,7 @@ related: methods
---
<section id="copy">
<p>Use the <code>reLayout</code> method to easily arrange item elements after a change.</p>
<p>Use the <a href="../docs/methods.html#relayout"><code>reLayout</code> method</a> to easily arrange item elements after a change.</p>
<p>Click on any item element to change its size.</p>
</section>

2
_posts/demos/2011-01-02-infinite-scroll.html

@ -7,7 +7,7 @@ infinite_scroll: true
---
<section id="copy">
<p>Isotope is interoperable with <a href="http://www.infinite-scroll.com/">Infinite Scroll</a> by Paul Irish. Use the <a href="../docs/methods.html#appended"><code>appended</code></a> method to add new items to the Isotope layout.</p>
<p>Isotope is interoperable with <a href="http://www.infinite-scroll.com/">Infinite Scroll</a> by Paul Irish. Use the <a href="../docs/methods.html#appended"><code>appended</code></a> method to add new items to the Isotope layout. CSS transitions have been disabled on the container element to avoid triggering AJAX call prematurely.</p>
</section>
<div id="container" class="variable-sizes clearfix infinite-scrolling">

10
_posts/docs/2010-12-01-introduction.mdown

@ -78,12 +78,12 @@ Isotope enables a wealth of functionality. But just because you can take advanta
## Acknowledgments
+ [**Faruk Ateş**](http://farukat.es) for [Modernizr](http://www.modernizr.com/)
+ [**Louis-Rémi Babé**](http://twitter.com/#!/Louis_Remi) for [jQuery smartresize](https://github.com/lrbabe/jquery-smartresize) which is used within Isotope and for [jQuery transform](https://github.com/lrbabe/jquery.transform.js) which clued me in to using jQuery 1.4.3's CSS hooks
+ [**Faruk Ateş**](http://farukat.es) for [Modernizr](http://www.modernizr.com/) (partially used within Isotope)
+ [**Louis-Rémi Babé**](http://twitter.com/#!/Louis_Remi) for [jQuery smartresize](https://github.com/lrbabe/jquery-smartresize) (used within Isotope) and for [jQuery transform](https://github.com/lrbabe/jquery.transform.js) which clued me in to using jQuery 1.4.3's CSS hooks
+ [**Jacek Galanciak**](http://razorjack.net/) for [jQuery Quicksand](http://razorjack.net/quicksand/), an early kernel of inspiration
+ [**Ralph Holzmann**](http://twitter.com/#!/ralphholzmann) for re-writing the [jQuery Plugins/Authoring tutorial](http://docs.jquery.com/Plugins/Authoring) and opened my eyes to [Plugin Methods](http://docs.jquery.com/Plugins/Authoring#Plugin_Methods) pattern
+ [**Eric Hynds**](http://www.erichynds.com/) for his article [Using $.widget.bridge Outside of the Widget Factory](http://www.erichynds.com/jquery/using-jquery-ui-widget-factory-bridge/) which provided the architecture for the plugin
+ [**Eric Hynds**](http://www.erichynds.com/) for his article [Using $.widget.bridge Outside of the Widget Factory](http://www.erichynds.com/jquery/using-jquery-ui-widget-factory-bridge/) which provided the architecture for Isotope
+ [**Paul Irish**](http://paul-irish.com) for [Infinite Scroll](http://infinite-scroll.com) (included with docs), the [imagesLoaded plugin](https://gist.github.com/268257) (included with Isotope), [Debounced resize() plugin](http://paulirish.com/demo/resize) (provided base for smartresize), and of course [Modernizr](http://www.modernizr.com/)
+ The [*jQuery UI Team*](http://jqueryui.com/about) for the widget bridge used within Isotope
+ [**Juriy Zaytsev aka "kangax"**](http://perfectionkills.com) for [getStyleProperty](http://perfectionkills.com/feature-testing-css-properties/) which is used within Isotope
+ The [**jQuery UI Team**](http://jqueryui.com/about) for [$.widget.bridge](https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.widget.js#L62-107) (used within Isotope)
+ [**Juriy Zaytsev aka "kangax"**](http://perfectionkills.com) for [getStyleProperty](http://perfectionkills.com/feature-testing-css-properties/) (used within Isotope)

2
_posts/docs/2010-12-06-filtering.mdown

@ -12,7 +12,7 @@ toc:
---
Isotope can hide and show item elements via the [`filter`](options.html#filter) option. The `filter` option accepts a jQuery selector. Items that match that selector will be shown. Items that do not match will be hidden.
Isotope can hide and show item elements via the [`filter` option](options.html#filter). `filter` accepts a jQuery selector. Items that match that selector will be shown. Items that do not match will be hidden.
[**See Demo: Filtering**](../demos/filtering.html)

4
_posts/docs/2010-12-07-sorting.mdown

@ -112,7 +112,7 @@ getSortData : {
For every method set in `getSortData`, Isotope uses that method to build the data for sorting. The data cache is built on initialization so it can be quickly accessed when sorting. With the methods above, we have built data for an item elements name, symbol, number, weight and category.
Sorting elements is done with the `sortBy` option. The value needs to match the property name used in the `getSortData` object.
Sorting elements is done with the [`sortBy` option](options.html#sortby). The value needs to match the property name used in the `getSortData` object.
With our example, we can use `'name'`, `'symbol'`, `'number'`, `'weight'` and `'category'`.
@ -126,7 +126,7 @@ There is an additional sorting data built in to Isotope `'original-order'`. Sort
## sortAscending option
By default, Isotope sorts data in ascension. If our data for name is "Gold, Antimony, Lead, Iron, Silver", when sorted by name, the elements will be ordered ABC.. : "Antimony, Gold, Iron, Lead, Silver." To reverse the order and sort data in descension, set `sortAscending` to `false`.
By default, Isotope sorts data in ascension. If our data for name is "Gold, Antimony, Lead, Iron, Silver", when sorted by name, the elements will be ordered ABC.. : "Antimony, Gold, Iron, Lead, Silver." To reverse the order and sort data in descension, set [`sortAscending`](options.html#sortascending) to `false`.
{% highlight javascript %}

4
_posts/docs/2010-12-20-license.mdown

@ -11,7 +11,9 @@ toc:
Isotope may be used in non-commercial and personal applications for free.
For commercial applications, you may license Isotope with the purchase of a one-time fee per developer seat (how many of you will be using developing with it) . Once purchased, you may use Isotope in all your future commercial applications. Commercial licenses may be purchased at [metafizzy.co](http://metafizzy.co).
For commercial applications, you may license Isotope with the purchase of a one-time fee per developer seat (how many of you will be developing with Isotope) . Once purchased, you may use Isotope in all your future commercial applications. Commercial licenses may be purchased at [metafizzy.co](http://metafizzy.co).
Copyright &copy; 2011 David DeSandro / Metafizzy LLC
## Isotope Commercial License Agreement

12
css/style.css

@ -440,7 +440,7 @@ body.doc {
}
#docs-nav ul .current a {
background: black;
background: hsla( 0, 0%, 0%, 0.3 );
color: #1BF;
}
#docs-nav ul .current a:hover { color: white; }
@ -453,6 +453,12 @@ body.doc {
/**** Doc content ****/
.doc h2,
.doc footer {
border-top: 1px solid #333;
padding-top: 0.8em;
}
.doc h2:target {
padding: 10px;
background: white;
@ -472,8 +478,8 @@ body.doc {
}
.doc h2,
.doc footer {
footer {
font-size: 12px;
border-top: 1px solid #333;
padding-top: 0.8em;
}

Loading…
Cancel
Save