From 26d5b222d482aebeebee153601054b490bb55f2f Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Thu, 21 Jul 2011 14:24:14 -0400 Subject: [PATCH] docs : index : typos --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index a527d61..43dfdf4 100644 --- a/index.html +++ b/index.html @@ -135,20 +135,20 @@ features: .text('Could not load sites using Isotope :('); }; - // dynamically load sites using Isotope from Ember app + // dynamically load sites using Isotope from Zootool $.getJSON('http://zootool.com/api/users/items/?username=desandro' + '&apikey=8b604e5d4841c2cd976241dd90d319d7' + '&tag=bestofisotope&callback=?') .error( ajaxError ) .success(function( data ){ - // proceed only if we have items + // proceed only if we have data if ( !data || !data.length ) { ajaxError(); return; } var items = [], - item, image; + item, datum; for ( var i=0, len = data.length; i < len; i++ ) { datum = data[i];