- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 10 Feb 2009 13:55:01 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs/scripts
In directory hutz:/tmp/cvs-serv10361/scripts
Modified Files:
w3c-validator.js
Log Message:
fixing relative paths for arrow icons in UI
Index: w3c-validator.js
===================================================================
RCS file: /sources/public/validator/htdocs/scripts/w3c-validator.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- w3c-validator.js 2 Feb 2009 21:20:18 -0000 1.6
+++ w3c-validator.js 10 Feb 2009 13:54:59 -0000 1.7
@@ -112,7 +112,7 @@
if (!options){
W3C.LegendImage.each(function(legendimage, i){
legendimage.setProperties({
- src: '../images/arrow-closed.png',
+ src: './images/arrow-closed.png',
alt: 'Show '
});
legendimage.removeClass('toggled');
@@ -123,7 +123,7 @@
} else {
W3C.LegendImage.each(function(legendimage, i){
legendimage.setProperties({
- src: '../images/arrow-open.png',
+ src: './images/arrow-open.png',
alt: 'Hide '
});
legendimage.addClass('toggled');
Received on Tuesday, 10 February 2009 13:55:09 UTC