1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/Config/config.js
2016-03-15 16:28:38 +01:00

26 lines
939 B
JavaScript

var Config = {
load : function() {
/*document.querySelector('form #nav_color a[type=button]').onclick = function() {
document.querySelector('input[name=color]').value = '32434D';
}
document.querySelector('form #nav_color input[name=color]').onchange = function() {
document.querySelector('nav').style.backgroundColor = '#'+this.value;
}
document.querySelector('form #font_size a[type=button]').onclick = function() {
var slide = document.querySelector('input[name=size]');
slide.value = 14;
slide.onchange();
}
document.querySelector('form #font_size input[name=size]').onchange = function() {
document.body.style.fontSize = this.value+'px';
document.querySelector('#currentsize').innerHTML = this.value+'px';
}*/
}
}
movim_add_onload(function() {
Config.load();
});