- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Aug 2009 15:00:17 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/WebContent/scripts In directory hutz:/tmp/cvs-serv26505/WebContent/scripts Modified Files: w3c_unicorn_index.js Log Message: unicorn now displays error messages on the index page instead of a dedicated page Index: w3c_unicorn_index.js =================================================================== RCS file: /sources/public/2006/unicorn/WebContent/scripts/w3c_unicorn_index.js,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- w3c_unicorn_index.js 28 Aug 2009 12:40:05 -0000 1.2 +++ w3c_unicorn_index.js 31 Aug 2009 15:00:15 -0000 1.3 @@ -64,6 +64,16 @@ W3C.TaskDescrip.set('text', W3C.TaskOptions[W3C.SelectedTask].title); }); + $$('div.error').addClass('pointer'); + + $$('div.error pre').slide('hide'); + + $$('div.error').each(function(error) { + error.addEvent('click', function(event) { + error.getElement('pre').slide('toggle'); + }); + }); + }, addOptionEvents: function () {
Received on Monday, 31 August 2009 15:00:28 UTC