upgrade to mootools 1.2; temporarily deactivate the color picker that does not work with this mootools version
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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();
|
||||
});
|
||||
});
|
||||
});
|
7598
js/mootools.js
7598
js/mootools.js
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user