This commit is contained in:
Marc Delisle
2009-05-18 14:18:53 +00:00
parent 72bd3e8cd6
commit ce7be6d009
689 changed files with 0 additions and 198914 deletions

View File

@@ -1,16 +0,0 @@
window.addEvent('domready', function() {
var r = new MooRainbow('myRainbow', {
'startColor': [58, 142, 246],
'imgPath': 'js/mooRainbow/images/',
'onChange': function(color) {
top.frame_navigation.document.getElementById('body_leftFrame').style.backgroundColor = color.hex;
top.frame_navigation.document.getElementById('pmalogo').style.backgroundColor = color.hex;
top.frame_content.document.body.style.backgroundColor = color.hex;
},
'onComplete': function(color) {
top.frame_content.document.getElementById('rainbowform').custom_color.value = color.hex;
top.frame_content.document.getElementById('rainbowform').custom_color_rgb.value = color.rgb;
top.frame_content.document.getElementById('rainbowform').submit();
}
});
});