MediaWiki:Common.js : Différence entre versions
Ligne 26 : | Ligne 26 : | ||
− | + | ||
mw.loader.load('https://cdn.jsdelivr.net/npm/vue/dist/vue.js') | mw.loader.load('https://cdn.jsdelivr.net/npm/vue/dist/vue.js') | ||
mw.loader.load('https://unpkg.com/axios/dist/axios.min.js') | mw.loader.load('https://unpkg.com/axios/dist/axios.min.js') | ||
Ligne 36 : | Ligne 36 : | ||
} | } | ||
}); | }); | ||
− |
Version du 29 juillet 2019 à 10:35
/* 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>';
}());
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'
}
});