Lompat ke isi

Pengguna:Dcac Inverter/welcome.js: Perbedaan antara revisi

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas
k Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink)
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"
 
(Satu revisi perantara oleh satu pengguna lainnya tidak ditampilkan)
(Tidak ada perbedaan)

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', '', '');
    }
});