- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 27 Sep 2010 21:26:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/scripts
In directory hutz:/tmp/cvs-serv22504/scripts
Modified Files:
w3c-validator.js
Log Message:
fixed previous commit
Index: w3c-validator.js
===================================================================
RCS file: /sources/public/2002/css-validator/scripts/w3c-validator.js,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- w3c-validator.js 27 Sep 2010 21:18:37 -0000 1.5
+++ w3c-validator.js 27 Sep 2010 21:26:47 -0000 1.6
@@ -5,7 +5,6 @@
//select elements
W3C.Legends = $$('legend.toggletext');
- W3C.LegendImage = $$('.toggleicon');
W3C.Options = $$('div.options');
W3C.TabSet = $('tabset_tabs');
@@ -21,7 +20,7 @@
var value = submit.value;
submit.setStyle('display', 'none');
var link = new Element('a', {'class': 'submit', 'href': '#'});
- var span = new Element('span').setHTML(value).inject(link);
+ var span = new Element('span').set('text', value).inject(link);
link.injectAfter(submit).addEvent('click', function(event){
new Event(event).stop();
W3C.Forms[i].submit();
@@ -89,7 +88,7 @@
W3C.Sections.each(function(section, i){
var fakeId = section.id.replace(/-/g, '_');
- W3C.SectionFx[i] = new Fx.Style(section, 'opacity', {'wait': false, 'duration': 220});
+ W3C.SectionFx[i] = new Fx.Tween(section, {property:'opacity', link: 'cancel', duration: 220});
section.setStyle('display', 'none');
if (W3C.Location[0] && fakeId.contains(W3C.Location[0].replace(/-/g, '_'))){
W3C.displaySection(i, true);
@@ -112,31 +111,11 @@
refreshOptionLinks: function(options, idx){
if (!options){
- W3C.LegendImage.each(function(legendimage, i){
- legendimage.setProperties({
- src: './images/arrow-closed.png',
- alt: 'Show '
- });
- legendimage.removeClass('toggled');
- });
if ($chk(idx)) W3C.OptionsFx[idx].slideOut();
W3C.Legends.removeClass('toggled');
-
} else {
- W3C.LegendImage.each(function(legendimage, i){
- legendimage.setProperties({
- src: './images/arrow-open.png',
- alt: 'Hide '
- });
- legendimage.addClass('toggled');
if ($chk(idx)) W3C.OptionsFx[idx].slideIn();
W3C.Legends.addClass('toggled');
- W3C.Legends.each(function(legend, i){
- var link = legend.getFirst();
- var linkhref = link.getProperty("href").replace("+with_options", '');
- link.setProperty("href", linkhref);
- });
- });
}
W3C.TabLinks.each(function(link){
@@ -176,4 +155,4 @@
};
-window.addEvent('domready', W3C.start);
+window.addEvent('domready', W3C.start);
\ No newline at end of file
Received on Monday, 27 September 2010 21:26:51 UTC