summaryrefslogtreecommitdiffabout
path: root/content/fireflix.js
authorMichael Krelin <hacker@klever.net>2006-11-16 23:04:06 (UTC)
committer Michael Krelin <hacker@klever.net>2006-11-16 23:04:06 (UTC)
commita5df65b1ec3c86cba0e2f12d5f51e3cb29c99353 (patch) (side-by-side diff)
treecd0f7c5f5506fc599c083d6632a7e74506baf6da /content/fireflix.js
parent77bede81381ed1adbda91a119128712a3688b4bd (diff)
downloadfireflix-a5df65b1ec3c86cba0e2f12d5f51e3cb29c99353.zip
fireflix-a5df65b1ec3c86cba0e2f12d5f51e3cb29c99353.tar.gz
fireflix-a5df65b1ec3c86cba0e2f12d5f51e3cb29c99353.tar.bz2
Building HTML for photos selection in sets browser
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@231 fe716a7a-6dde-0310-88d9-d003556173a8
Diffstat (limited to 'content/fireflix.js') (more/less context) (ignore whitespace changes)
-rw-r--r--content/fireflix.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/content/fireflix.js b/content/fireflix.js
index 328e9e2..995ec5c 100644
--- a/content/fireflix.js
+++ b/content/fireflix.js
@@ -665,6 +665,15 @@ var fireflix = {
var rv = this.build_html(this.photoset.photos,uti,utl);
this.popup_content(rv);
},
+ on_cmd_setphotos_html: function(csfx,ev) {
+ var uti = csfx.charAt(0); var utl = csfx.charAt(1);
+ var rv = '';
+ for(var p in this.photoset.photos) {
+ if(this.photoset.selection.isSelected(p))
+ rv += this.photo_html(this.photoset.photos[p],uti,utl)+'\n';
+ }
+ this.popup_content(rv);
+ },
on_cmd_uploads_html: function(csfx,ev) {
var uti = csfx.charAt(0); var utl = csfx.charAt(1);
@@ -923,6 +932,10 @@ var fireflix = {
'stm_','m_bop','cmdset_sets','cmd_sets_html'
);
this.append_html_menu(
+ document.getElementById('setphotos_html_menu'),
+ 'stm_','m_bop','cmdset_setphotos','cmd_setphotos_html'
+ );
+ this.append_html_menu(
document.getElementById('uploads_html_menu'),
'stm_','m_bop','cmdset_uploads','cmd_uploads_html'
);