Pengguna:Dcac Inverter/welcome.js: Perbedaan antara revisi
Tampilan
Konten dihapus Konten ditambahkan
←Membuat halaman berisi '// * This script is a branch from id:User:Iwan Novirion/welcome.js function welcome() { // Find the edit box var txt = document.editform.wpTextbox1;...' Tag: Suntingan perangkat seluler Suntingan peramban seluler Suntingan seluler lanjutan |
k A09 memindahkan halaman Pengguna:Heterofemi/welcome.js ke Pengguna:Dcac Inverter/welcome.js tanpa membuat pengalihan: Secara otomatis memindahkan halaman ketika mengganti nama pengguna "Heterofemi" menjadi "Dcac Inverter" |
||
(3 revisi perantara oleh 2 pengguna tidak ditampilkan) | |||
Baris 34: | Baris 34: | ||
// Create a tab that calls this function when pressed |
// Create a tab that calls this function when pressed |
||
$(function () { |
|||
if(document.title.indexOf("Membuat Pembicaraan Pengguna:") === 0) { |
if(document.title.indexOf("Membuat Pembicaraan Pengguna:") === 0) { |
||
addPortletLink('p-cactions', 'javascript:welcome()', 'Welcome', 'ca-welcome', 'Pesan selamat datang pada pengguna baru', '', ''); |
mw.util.addPortletLink('p-cactions', 'javascript:welcome()', 'Welcome', 'ca-welcome', 'Pesan selamat datang pada pengguna baru', '', ''); |
||
} |
} |
||
}); |
}); |
Revisi terkini sejak 18 Juni 2024 06.17
// * This script is a branch from [[:id:User:Iwan Novirion/welcome.js]]
function welcome() {
// Find the edit box
var txt = document.editform.wpTextbox1;
//The welcome template you are wanting to use
var welcome_msg = 'sd2';
// The code to be added to the page
var tag = '{{'+'gnt'+':'+ welcome_msg +'}}';
// If the edit box doesn't already have this tag...
if (txt.value.indexOf(tag) == -1) {
// Append the tag
txt.value += tag;
// Add an edit summary
document.editform.wpSummary.value = 'Selamat datang di Wikipedia Bahasa Indonesia !';
// Press the Save page button
document.editform.submit();
}
// If the tag was already there, turn the tab background red to indicate
// that the script is functioning properly, but that there is no action
// to do. This doesn't interrupt the user's work like an alert() would.
else {
document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444";
document.getElementById('ca-unverified').style.backgroundColor = "#ff4444";
}
}
// Create a tab that calls this function when pressed
$(function () {
if(document.title.indexOf("Membuat Pembicaraan Pengguna:") === 0) {
mw.util.addPortletLink('p-cactions', 'javascript:welcome()', 'Welcome', 'ca-welcome', 'Pesan selamat datang pada pengguna baru', '', '');
}
});