]> git.sesse.net Git - pr0n/blobdiff - files/pr0n-fullscreen.js
Add a (hidden) feature for filtering authors down to a set, not just one.
[pr0n] / files / pr0n-fullscreen.js
index f9a2ebc3bf50eea1a92c2f252f07aa7d8c249c8c..a01508a328c4c813512998b27cb7cc0eba4276e7 100644 (file)
@@ -143,6 +143,18 @@ function display_image(width, height, evt, filename, element_id)
                // Update the "download original" link.
                var original_url = window.location.origin + "/" + evt + "/original/" + filename;
                document.getElementById("origdownload").href = original_url;
+
+               // If it's a raw image, show a JPEG link.
+               var fulldownload = document.getElementById("fulldownload");
+               if (filename.match(/\.(nef|cr2)$/i)) {
+                       fulldownload.style.display = "block";
+                       var full_url = window.location.origin + "/" + evt + "/" + filename;
+                       document.getElementById("fulldownloadlink").href = full_url;
+                       origdownload.innerHTML = "Download original image (RAW)";
+               } else {
+                       fulldownload.style.display = "none";
+                       origdownload.innerHTML = "Download original image";
+               }
        }
 
        if (global_infobox) {
@@ -366,7 +378,7 @@ function fade_text(opacity)
                if (opacity < 0.0) {
                        opacity = 0.0;
                }
-               setTimeout("fade_text(" + opacity + ")", 30);
+               setTimeout(function() { fade_text(opacity); }, 30);
        } else {
                var text = document.getElementById("text");
                if (text !== null) {
@@ -388,7 +400,7 @@ function select_image(evt, filename, selected)
        req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        req.send("event=" + evt + "&filename=" + filename + "&selected=" + selected);
 
-       setTimeout("fade_text(0.99)", 30);
+       setTimeout(function() { fade_text(0.99); }, 30);
 }
 
 function key_down(which)