Revision 88986 of "ผู้ใช้:Geonuch/vector.js" on thwikisource

// ========== แจ้งลบ ==========
addOnloadHook(function() {
  //check if called from deletion request
  if(document.getElementById('ca-nstab-special')) {
    return;
  }

  if (document.title.indexOf("แก้ไข") != -1) {
    if (document.URL.lastIndexOf("&fakeaction=speedydel") == -1)
      return;

    document.editform.wpTextbox1.value = "{{ลบ}}\n\n" + document.editform.wpTextbox1.value;
    document.editform.wpSummary.value = "แจ้งลบ";
    document.editform.submit() ;
    return;
  }
  addTab("javascript:doQsd() ", "แจ้งลบ", "ca-sd", "คำสั่งแจ้งลบ", "") ;
}) ;
 
function doQsd() {
  //edit page
  var title = document.title.substr(0, document.title.lastIndexOf(' - วิกิพีเดีย')) ;
  location.assign("/w/index.php?title=" + title + "&action=edit&fakeaction=speedydel") ;
}