1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-11-01 07:56:04 +00:00
AideDeJeu/Docs/Osgild/scripts.js

9 lines
230 B
JavaScript
Raw Normal View History

2020-01-16 21:25:11 +01:00
function init() {
var range = document.getElementById("range");
var map = document.getElementById("map");
map.style.width = "" + range.value + "%";
range.oninput = function() {
map.style.width = "" + range.value + "%";
}
}