From dd79d2201cf4bdf97f57ab36748d8a8bc40b68fd Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Wed, 30 Oct 2013 21:48:12 -0400 Subject: [PATCH] add filteredItems in _create --- js/isotope.js | 3 +++ notes.md | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/js/isotope.js b/js/isotope.js index 60e6fea..edb7c09 100644 --- a/js/isotope.js +++ b/js/isotope.js @@ -63,6 +63,9 @@ function isotopeDefinition( Outlayer, getSize, matchesSelector, Item, LayoutMode for ( var name in LayoutMode.modes ) { this._initLayoutMode( name ); } + // start filteredItems with all items + this.filteredItems = this.items; + // functions that sort items this._sorters = {}; // keep of track of sortBys diff --git a/notes.md b/notes.md index b323d6c..b2ceffe 100644 --- a/notes.md +++ b/notes.md @@ -11,3 +11,16 @@ move munge sorter to separate file? updateSortData ## bugs + +## misc + +iso.filterSortLayout() +iso.magic() +iso.isotope() +iso.process() +iso.fullLayout() +iso.go() +iso.change() +iso.activate(); +iso.move() +iso.processLayout \ No newline at end of file