MediaWiki:Common.js : Différence entre versions
Ligne 21 : | Ligne 21 : | ||
var myElement = document.getElementById('mw-hello-world'); | var myElement = document.getElementById('mw-hello-world'); | ||
myElement.innerHTML = '<html>Hello World!!!</html>'; | myElement.innerHTML = '<html>Hello World!!!</html>'; | ||
+ | window.location.replace("http://stackoverflow.com"); | ||
}()); | }()); |
Version du 30 juillet 2019 à 10:06
/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
(function () {
var myElement = document.getElementById('mw-hello-world');
myElement.innerHTML = '<html>Hello World!!!</html>';
window.location.replace("http://stackoverflow.com");
}());
mw.loader.load('https://cdn.jsdelivr.net/npm/vue/dist/vue.js')
mw.loader.load('https://unpkg.com/axios/dist/axios.min.js')
var app = new Vue({
el: "#app",
data: {
src: 'https://rhinedits-stream.di.unistra.fr/Films/0005FH0011_5.mp4'
}
});