summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--content/fireflix.js2
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 );