This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/public/javascripts/color.js

7 lines
243 B
JavaScript

events['.color_radio:click'] = function(element, e) {
style = document.createElement('link');
style.rel = 'Stylesheet';
style.href = BASE_PATH + "/stylesheets/themes/color." + element.value + ".css";
$$('head')[0].appendChild(style);
}