diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2015-02-01 16:51:35 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2015-02-01 16:51:35 +0100 |
| commit | cc4f17e0d8b9c027448a75dafa8194a36d283acd (patch) | |
| tree | cd981250e9b468b08bfa319ad0dfdf465223d7ff /templates/scripts-general.js | |
| parent | b2d0c4ea27c3885d69c9067b579a075a65ff3834 (diff) | |
| download | cataract-cc4f17e0d8b9c027448a75dafa8194a36d283acd.tar.xz | |
Move the current design templates in the "classic" subdir
Let's call this design a "classic" one.
Diffstat (limited to 'templates/scripts-general.js')
| -rw-r--r-- | templates/scripts-general.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/scripts-general.js b/templates/scripts-general.js deleted file mode 100644 index c371bfa..0000000 --- a/templates/scripts-general.js +++ /dev/null @@ -1,21 +0,0 @@ -function read_exif_table_cookie () { - var exif_table_cookie = document.cookie; - exif_table_cookie = exif_table_cookie.split ("="); - set_exif_table_visibility (exif_table_cookie[1]); -} - -function write_exif_table_cookie (visible) { - var exif_table_cookie = "exif_table_visible=" + visible; - document.cookie = exif_table_cookie; -} - -function set_exif_table_visibility (visible) { - document.getElementById('exif_table').style.display = visible == "yes" ? 'block' : 'none'; - document.getElementById('exif_line').style.display = visible == "yes" ? 'none' : 'block'; -} - -function preload_image (src) { - img = new Image(); - img.src = src; -} - |
