diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-01-20 11:10:55 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-01-20 11:17:27 +0100 |
commit | 74c290c62bbc48dfd0aa1d243a700da4eb0dcd1f (patch) | |
tree | 1f6210f3a65ef9b0b7b2d7b48ba8e85c8db935a3 | |
parent | ffc29441338ca87bec6f6f1a331f638818edf693 (diff) |
issue101, fix another misbehaviour when seting display attribute
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
-rw-r--r-- | phpfspot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot.js b/phpfspot.js index 0cec671..89eacba 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -329,7 +329,7 @@ function hidePhotoDetails(mode) } else { photo_details.style.visibility = 'visible'; - photo_details.style.display = 'inline'; + photo_details.style.display = ''; } } } // hidePhotoDetails() |