Historisation Exemple

Exemple test historisé
This commit is contained in:
2018-10-21 18:37:25 +02:00
commit ba3d8f06f6
153 changed files with 32155 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
window.onload = function(){
document.getElementsByTagName('button')[0].onclick = function () {
var _wrapper = document.getElementById('wrapper');
if(_wrapper.classList.contains( 'display_cell')) {
_wrapper.classList.remove('display_cell');
} else {
_wrapper.classList.add('display_cell');
}
}
};