author | Michael Krelin <hacker@klever.net> | 2006-11-16 22:33:43 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-11-16 22:33:43 (UTC) |
commit | 77bede81381ed1adbda91a119128712a3688b4bd (patch) (side-by-side diff) | |
tree | b4021f71605bf4cee254684377759873c7967375 /content/fireflix.js | |
parent | d98dfeb112f9db06c5e642e14ee9bbda4d90d0cb (diff) | |
download | fireflix-77bede81381ed1adbda91a119128712a3688b4bd.zip fireflix-77bede81381ed1adbda91a119128712a3688b4bd.tar.gz fireflix-77bede81381ed1adbda91a119128712a3688b4bd.tar.bz2 |
hiding photo properties completely in photoset browser when no photo selected
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@230 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/fireflix.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fireflix.js b/content/fireflix.js index 48053c5..328e9e2 100644 --- a/content/fireflix.js +++ b/content/fireflix.js @@ -94,5 +94,5 @@ var fireflix = { init: function(f) { this.fireflix = f; - pull_elements(this,document,[ 'set_photo' ]); + pull_elements(this,document,[ 'set_photo', 'set_photo_props' ]); document.getElementById('setphotos').view = this; }, @@ -159,7 +159,7 @@ var fireflix = { this.set_photo.src = this.fireflix.flickr.get_photo_url(p.server,p.id,p.secret,'t'); - this.set_photo.hidden = false; + this.set_photo_props.hidden = false; }else{ - this.set_photo.hidden = true; + this.set_photo_props.hidden = true; } }, |