2006/unicorn/WebContent/scripts w3c_unicorn_languages.js,NONE,1.1

Update of /sources/public/2006/unicorn/WebContent/scripts
In directory hutz:/tmp/cvs-serv2961/WebContent/scripts

Added Files:
	w3c_unicorn_languages.js 
Log Message:
script for the language page, adds tooltips to show translations on mouseOver

--- NEW FILE: w3c_unicorn_languages.js ---
/* $Id:  */
var W3C = {
	
	start: function(){
		
		var tdOk = $$('#translations td.ok');
		tdOk.each(function(element) {
			element.store('tip:text', element.getElement('span').title);
		});
		
		new Tips($$('#translations td.ok'));
		
	}
	
};

window.addEvent('domready', W3C.start);

Received on Monday, 5 October 2009 13:47:34 UTC