From 6531963464153a98773ab258f98059a083cd9c80 Mon Sep 17 00:00:00 2001 From: Charlie Hoey Date: Thu, 7 Mar 2013 22:01:11 -0500 Subject: [PATCH 1/3] field typo in readme file --- README.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.textile b/README.textile index 47aec3e..c88b92c 100644 --- a/README.textile +++ b/README.textile @@ -74,10 +74,10 @@ $('#photos').flickr(config).photosGetRecent() $('#photos').flickr(config).photosGetContactsPublicPhotos({user_id: 'xxx', count: 8}) // recent 10 photos from a user's stream -$('#photos').flickr(config).photosSearch({user_id: 'xxx', count: 10}) +$('#photos').flickr(config).photosSearch({user_id: 'xxx', per_page: 10}) // recent 10 photos from a user's stream with the tag 'portfolio' -$('#photos').flickr(config).photosSearch({user_id: 'xxx', count: 10, tags: 'portfolio'}) +$('#photos').flickr(config).photosSearch({user_id: 'xxx', per_page: 10, tags: 'portfolio'}) // recent 10 photos from a particular photoset $('#photoset').flickr(config).photosetsGetPhotos({photoset_id: '72157600185772527', per_page: 10}) From fd3deeccd10027362dbfb761aa1130253aa93e77 Mon Sep 17 00:00:00 2001 From: Charlie Hoey Date: Thu, 7 Mar 2013 22:02:52 -0500 Subject: [PATCH 2/3] one more replacement --- README.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.textile b/README.textile index c88b92c..52989a5 100644 --- a/README.textile +++ b/README.textile @@ -71,7 +71,7 @@ var config = { $('#photos').flickr(config).photosGetRecent() // recent 8 photos from a user's contacts -$('#photos').flickr(config).photosGetContactsPublicPhotos({user_id: 'xxx', count: 8}) +$('#photos').flickr(config).photosGetContactsPublicPhotos({user_id: 'xxx', per_page: 8}) // recent 10 photos from a user's stream $('#photos').flickr(config).photosSearch({user_id: 'xxx', per_page: 10}) From a52ae72d3089ed965a5404c6045bd94d9b1a7d59 Mon Sep 17 00:00:00 2001 From: Charlie Date: Fri, 15 Mar 2013 10:00:21 -0400 Subject: [PATCH 3/3] updated flickr library to fire loaded event --- jquery.flickr.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jquery.flickr.js b/jquery.flickr.js index 6522d6c..dc93a11 100644 --- a/jquery.flickr.js +++ b/jquery.flickr.js @@ -83,6 +83,7 @@ $.getJSON($.flickr.url(method, options), function(data) { photos = (data.photos === undefined ? data.photoset : data.photos) elements.append($.flickr.thumbnail.process(photos)) + $(document).trigger("flickrLoaded"); }) }) }