From 8db9e6c0ba4cfd4a04a34df2e7e5f6f180b5e39e Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 3 Jun 2012 08:34:56 -0700 Subject: moved icons into their own directory --- arrow.svg | 84 -------------------------------------------------------- icons/arrow.svg | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ icons/left.png | Bin 0 -> 2792 bytes icons/right.png | Bin 0 -> 2807 bytes index.php | 4 +-- left.png | Bin 2792 -> 0 bytes right.png | Bin 2807 -> 0 bytes 7 files changed, 86 insertions(+), 86 deletions(-) delete mode 100644 arrow.svg create mode 100644 icons/arrow.svg create mode 100644 icons/left.png create mode 100644 icons/right.png delete mode 100644 left.png delete mode 100644 right.png diff --git a/arrow.svg b/arrow.svg deleted file mode 100644 index 569bda4..0000000 --- a/arrow.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/icons/arrow.svg b/icons/arrow.svg new file mode 100644 index 0000000..569bda4 --- /dev/null +++ b/icons/arrow.svg @@ -0,0 +1,84 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/left.png b/icons/left.png new file mode 100644 index 0000000..c55bbf2 Binary files /dev/null and b/icons/left.png differ diff --git a/icons/right.png b/icons/right.png new file mode 100644 index 0000000..d606e36 Binary files /dev/null and b/icons/right.png 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:\/\/',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(); } diff --git a/left.png b/left.png deleted file mode 100644 index c55bbf2..0000000 Binary files a/left.png and /dev/null differ diff --git a/right.png b/right.png deleted file mode 100644 index d606e36..0000000 Binary files a/right.png and /dev/null differ -- cgit v1.2.3-18-g5258