summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2012-06-03 08:34:56 -0700
committerArun Persaud <arun@nubati.net>2012-06-03 08:34:56 -0700
commit8db9e6c0ba4cfd4a04a34df2e7e5f6f180b5e39e (patch)
tree575819da80a270ec368f807b2395b38633ed4d42
parent4297670a6158a584b9d8b3c04214ff2974fb645a (diff)
downloadphoto-tags-8db9e6c0ba4cfd4a04a34df2e7e5f6f180b5e39e.tar.gz
photo-tags-8db9e6c0ba4cfd4a04a34df2e7e5f6f180b5e39e.tar.bz2
photo-tags-8db9e6c0ba4cfd4a04a34df2e7e5f6f180b5e39e.zip
moved icons into their own directory
-rw-r--r--icons/arrow.svg (renamed from arrow.svg)0
-rw-r--r--icons/left.png (renamed from left.png)bin2792 -> 2792 bytes
-rw-r--r--icons/right.png (renamed from right.png)bin2807 -> 2807 bytes
-rw-r--r--index.php4
4 files changed, 2 insertions, 2 deletions
diff --git a/arrow.svg b/icons/arrow.svg
index 569bda4..569bda4 100644
--- a/arrow.svg
+++ b/icons/arrow.svg
diff --git a/left.png b/icons/left.png
index c55bbf2..c55bbf2 100644
--- a/left.png
+++ b/icons/left.png
Binary files differ
diff --git a/right.png b/icons/right.png
index d606e36..d606e36 100644
--- a/right.png
+++ b/icons/right.png
Binary files differ
diff --git a/index.php b/index.php
index 359811b..5d62eb4 100644
--- a/index.php
+++ b/index.php
@@ -126,7 +126,7 @@ function load_content() {
if (ID>=0)
{
var singlepicspace=pics.selectAll("li").data(picdata, function(d){return ID;}).enter().append("li").append("div").attr("class","singlepic");
- singlepicspace.append("div").attr("class","left").append("img").attr("src",webbase+"/left.png");
+ singlepicspace.append("div").attr("class","left").append("img").attr("src",webbase+"/icons/left.png");
singlepicspace.append("img")
.attr("class","large")
.attr("src",function(d) {
@@ -134,7 +134,7 @@ function load_content() {
s = s.replace('file:\/\/<?php echo "".str_replace("/","\/",$dbprefix); ?>',webbase+'/Photos-small/');
return s;
});
- singlepicspace.append("div").attr("class","right").append("img").attr("src",webbase+"/right.png");
+ singlepicspace.append("div").attr("class","right").append("img").attr("src",webbase+"/icons/right.png");
update_thumbnails();
}