author | Michael Krelin <hacker@klever.net> | 2006-10-09 19:03:13 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-10-09 19:03:13 (UTC) |
commit | 55ea41380cc2bcbaebf8cb0a2c1ee401b79f5016 (patch) (unidiff) | |
tree | 03a2704067dc5dea4c5c10a8ab0401d6b1f74656 | |
parent | da97ac566cb06a583bd8b84b9e1275e37ea0a3ca (diff) | |
download | fireflix-55ea41380cc2bcbaebf8cb0a2c1ee401b79f5016.zip fireflix-55ea41380cc2bcbaebf8cb0a2c1ee401b79f5016.tar.gz fireflix-55ea41380cc2bcbaebf8cb0a2c1ee401b79f5016.tar.bz2 |
html generation was mistakenly reversed
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@189 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/fireflix.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/fireflix.js b/content/fireflix.js index 63a4118..85b4d39 100644 --- a/content/fireflix.js +++ b/content/fireflix.js | |||
@@ -871,17 +871,17 @@ var fireflix = { | |||
871 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ | 871 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ |
872 | '</a>'; | 872 | '</a>'; |
873 | return rv; | 873 | return rv; |
874 | }, | 874 | }, |
875 | build_html: function(photos,uti,utl) { | 875 | build_html: function(photos,uti,utl) { |
876 | var rv = ''; | 876 | var rv = ''; |
877 | for(var i in photos) { | 877 | for(var i in photos) { |
878 | var p = photos[i]; | 878 | var p = photos[i]; |
879 | rv += this.photo_html(p,utl,uti)+'\n'; | 879 | rv += this.photo_html(p,uti,utl)+'\n'; |
880 | } | 880 | } |
881 | return rv; | 881 | return rv; |
882 | }, | 882 | }, |
883 | 883 | ||
884 | popup_content: function(s) { | 884 | popup_content: function(s) { |
885 | window.openDialog( | 885 | window.openDialog( |
886 | "chrome://fireflix/content/generated-content.xul", | 886 | "chrome://fireflix/content/generated-content.xul", |
887 | null, "dialog,chrome", this, s ); | 887 | null, "dialog,chrome", this, s ); |