Pengguna:Iwan Novirion/tabs.js: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
k revisi |
k Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink) |
||
(10 revisi perantara oleh 2 pengguna tidak ditampilkan) | |||
Baris 34:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Pembicaraan Pengguna:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:welcome()', 'wel', 'ca-welcome', 'Pesan selamat datang pengguna baru', '', '');
}
});
Baris 75:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Pembicaraan Pengguna:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:anon()', 'non', 'ca-welcome', 'Selamat datang pengguna anonim', '', '');
}
});
Baris 116:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Pembicaraan Pengguna:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:test()', 'tes', 'ca-welcome', 'Pesan gunakan bak pasir', '', '');
}
});
Baris 157:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Pembicaraan Pengguna:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:
}
});
//Tab berkas gambar tanpa lisensi
function
// Find the edit box
Baris 170:
//The welcome template you are wanting to use
var welcome_msg = '
// The code to be added to the page
var tag = '{{'+'
// If the edit box doesn't already have this tag...
Baris 198:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Berkas:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:
}
});
//Tab berkas gambar tanpa sumber
function
// Find the edit box
Baris 211:
//The welcome template you are wanting to use
var welcome_msg = '
// The code to be added to the page
var tag = '{{'+'
// If the edit box doesn't already have this tag...
Baris 239:
// Create a tab that calls this function when pressed
if(document.title.indexOf("Menyunting Berkas:") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:
}
});
//Tab hapus artikel
function hapus() {
// Find the edit box
var txt = document.editform.wpTextbox1;
//The welcome template you are wanting to use
var welcome_msg = 'hapus'
// The code to be added to the page
var tag = '{{'+ 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 = 'Usul penghapusan artikel';
// 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("Menyunting Berkas:") == 0) { return false; }
if(document.title.indexOf("Menyunting Pembicaraan Pengguna:") == 0) { return false; }
if(document.title.indexOf("Menyunting ") == 0) {
mw.util.addPortletLink('p-cactions', 'javascript:hapus()', 'hps', 'ca-welcome', 'Hapus artikel', '', '');
return true;
}
});
|