מדיה ויקי:ColorProtected.js: הבדלים בין גרסאות בדף

מתוך חב"דציטוט, מאגר ציטוטים חב"דים
קפיצה לניווט קפיצה לחיפוש
ויקיציטוט>Krenair
(Maintenance: mw:RL/MGU / mw:RL/JD - addOnloadHook is deprecated)
 
(יצירת דף עם התוכן "←‏* Colors the "edit" tab according to protection level: * Gray: Move for sysop only. * Yellow: Semi-protected. * Red: Full protection. * * Created by [[User:Yonidebest]] *: function colorProtected() { var caEdit = document.getElementById('ca-edit'); if (wgRestrictionEdit[0] && wgRestrictionEdit[0] == "autoconfirmed") caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#FCFFE5'; else if (wgRestrictionEdit[0] && wgRestrictionEdit[0...")
(אין הבדלים)

גרסה מ־08:14, 7 בספטמבר 2025

/*
 * Colors the "edit" tab according to protection level:
 * Gray: Move for sysop only.
 * Yellow: Semi-protected.
 * Red: Full protection.
 *
 * Created by [[User:Yonidebest]]
 *
 */

function colorProtected() {
 var caEdit = document.getElementById('ca-edit');

 if (wgRestrictionEdit[0] && wgRestrictionEdit[0] == "autoconfirmed")
  caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#FCFFE5';
 else if (wgRestrictionEdit[0] && wgRestrictionEdit[0] == "sysop")
  caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#FFE5E5';
 else if (wgRestrictionMove[0]&& wgRestrictionMove[0] == "sysop")
  caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#E5E5E5';
}

$(colorProtected);