summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-12-23 08:51:53 +0100
committerYorhel <git@yorhel.nl>2008-12-23 08:51:53 +0100
commitf746a5e8a77b057dd63559fab7acceb956b01954 (patch)
tree7e66db399082e70ecc0e3fb339eabcce61eadbad /static
parent4b89163955f33bfb49b774de48a701daebec374f (diff)
Using &laquo; and &raquo; instead of <- and -> in image viewer
Diffstat (limited to 'static')
-rw-r--r--static/f/script.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/f/script.js b/static/f/script.js
index dcc901e0..8ff2fe7f 100644
--- a/static/f/script.js
+++ b/static/f/script.js
@@ -102,8 +102,8 @@ function ivInit() {
d.innerHTML = '<b id="ivimg"></b><br />'
+'<a href="#" id="ivfull">&nbsp;</a>'
+'<a href="#" onclick="return ivClose()" id="ivclose">close</a>'
- +'<a href="#" onclick="return ivView(this)" id="ivprev">&lt;- previous</a>'
- +'<a href="#" onclick="return ivView(this)" id="ivnext">next -&gt;</a>';
+ +'<a href="#" onclick="return ivView(this)" id="ivprev">&laquo; previous</a>'
+ +'<a href="#" onclick="return ivView(this)" id="ivnext">next &raquo;</a>';
document.body.appendChild(d);
d = document.createElement('b');
d.id = 'ivimgload';