Użytkownik:Michał56/common.js: Różnice pomiędzy wersjami
Z Nonsensopedii, polskiej encyklopedii humoru
M Znacznik: edytor źródłowy |
M Znacznik: edytor źródłowy |
||
Linia 32: | Linia 32: | ||
"sampleText": "" |
"sampleText": "" |
||
}; |
}; |
||
} |
|||
/* |
|||
* autor: Michał56 |
|||
* wersja: 1.0 |
|||
*/ |
|||
var p = document.getElementById("pBody"); |
|||
p.appendChild('<li id="quickfind"><a id="openmodal" onclick="ow()" title="">Znajdź</a>'); |
|||
function ow() |
|||
{ |
|||
$.showCustomModal('Znajdź', '<form class="WikiaForm" id="formularz"><fieldset>Przestrzeń nazw<br/><input type="text" id="pnn" name="pn" /><br/>Nazwa strony</br><input type="text" name="ns" id="nss" /></fieldset></form>', { |
|||
id: "modul", |
|||
width: 700, |
|||
button: [{ |
|||
id: "anulowanie", |
|||
message: "Anuluj", |
|||
handler: function() { |
|||
zm(); |
|||
} |
|||
}, { |
|||
id: "zrobione", |
|||
message: "Gotowe", |
|||
handler: function() { |
|||
zww(); |
|||
} |
|||
} |
|||
}] |
|||
}); |
|||
} |
|||
function zm() { |
|||
$("modul").closeModal(); |
|||
} |
|||
function zww() { |
|||
var cialo_formularza = document.getElementById("formularz"); |
|||
var przestrzen_nazw = document.getElementById("pnn").value; |
|||
var nazwa_strony = document.getElementById("nss").value; |
|||
window.open('http://nonsensopedia.wikia.com/wiki/przestrzen_nazw:nazwa_strony'); |
|||
} |
} |
Wersja z 13:26, 18 sty 2016
//skrypt zapobiegający znikaniu opcji ostatnich zmian
/*
* @autor - Michał56
*/
;(function($, mw){
if (mw.config.get('wgCanonicalSpecialPageName') !== 'Recentchanges') return;
if ($('#recentchanges-options').hasClass('collapsed')) {
$('#recentchanges-options').toggleClass('collapsed');
}
})(this.jQuery, this.mediaWiki);
//RollbackAll
importScript("User:Expert3222/RollbackAll.js");
//dodatkowe przyciski w edytorze
/* autor - Michał56 */
if (typeof (mwCustomEditButtons) != 'undefined') {
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/commons/2/26/Button_latinas.png",
"speedTip": "Wstaw polskie cudzysłowy",
"tagOpen": "„",
"tagClose": "”",
"sampleText": ""
};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "https://upload.wikimedia.org/wikipedia/commons/3/3f/Button_headline_-_2.png",
"speedTip": "Wstaw półpauzę",
"tagOpen": "–",
"tagClose": "",
"sampleText": ""
};
}
/*
* autor: Michał56
* wersja: 1.0
*/
var p = document.getElementById("pBody");
p.appendChild('<li id="quickfind"><a id="openmodal" onclick="ow()" title="">Znajdź</a>');
function ow()
{
$.showCustomModal('Znajdź', '<form class="WikiaForm" id="formularz"><fieldset>Przestrzeń nazw<br/><input type="text" id="pnn" name="pn" /><br/>Nazwa strony</br><input type="text" name="ns" id="nss" /></fieldset></form>', {
id: "modul",
width: 700,
button: [{
id: "anulowanie",
message: "Anuluj",
handler: function() {
zm();
}
}, {
id: "zrobione",
message: "Gotowe",
handler: function() {
zww();
}
}
}]
});
}
function zm() {
$("modul").closeModal();
}
function zww() {
var cialo_formularza = document.getElementById("formularz");
var przestrzen_nazw = document.getElementById("pnn").value;
var nazwa_strony = document.getElementById("nss").value;
window.open('http://nonsensopedia.wikia.com/wiki/przestrzen_nazw:nazwa_strony');
}