upgrade to mootools 1.2; temporarily deactivate the color picker that does not work with this mootools version

This commit is contained in:
Marc Delisle
2008-07-14 19:52:16 +00:00
parent 29d7c3e2f8
commit 2ac75d4591
9 changed files with 1063 additions and 7683 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,15 +0,0 @@
window.addEvent('domready', function(){
var divs = $$(['docs', 'js', 'html', 'css']);
divs.each(function(div){
var link = $(div.id + 'code');
div.setStyle('display', 'none');
link.addEvent('click', function(e){
e = new Event(e);
divs.each(function(other){
if (other != div) other.setStyle('display', 'none');
});
div.setStyle('display', (div.getStyle('display') == 'block') ? 'none' : 'block');
e.stop();
});
});
});

File diff suppressed because it is too large Load Diff