משתמש אלמוני
מדיה ויקי:Gadget-WLM-draft.js: הבדלים בין גרסאות בדף
אין תקציר עריכה
אין תקציר עריכה |
אין תקציר עריכה |
||
שורה 1: | שורה 1: | ||
var timestamp; | $(function() { | ||
new mw.Api() | var timestamp; | ||
.get({ | new mw.Api() | ||
.get({ | |||
action: 'query', | |||
format: 'json', | |||
}) | curtimestamp: 1 | ||
.done(function(data) { | }) | ||
.done(function(data) { | |||
}); | timestamp = data.curtimestamp; | ||
}); | |||
function i18n(name) { | function i18n(name) { | ||
var msg = { | var msg = { | ||
שורה 24: | שורה 24: | ||
showAll: ['הצגת עריכות שהוסתרו', 'Show all hidden'], | showAll: ['הצגת עריכות שהוסתרו', 'Show all hidden'], | ||
whatsnew: ['מה חדש?', "What's new?"], | whatsnew: ['מה חדש?', "What's new?"], | ||
closenew: ['סגירת רשימת החדשים', "Close the bar"], | |||
loga: ['שימו לב: רשימת המעקב כוללת רשומת יומן שלא נקראה. הדף הוא ', | loga: ['שימו לב: רשימת המעקב כוללת רשומת יומן שלא נקראה. הדף הוא ', | ||
'Pay attention: the watchlist includes unread log entry. Page name: ' | 'Pay attention: the watchlist includes unread log entry. Page name: ' | ||
שורה 546: | שורה 547: | ||
oldid: ans[key].old_revid}; | oldid: ans[key].old_revid}; | ||
}); | }); | ||
Object.keys(newmap).map(function( | Object.keys(newmap).map(function(data) { | ||
var vvv = $('.gold-' + | var vvv = $('.gold-' + data).length; | ||
if (defected[ | if (defected[data]) | ||
$('#newrevs') | $('#newrevs') | ||
.append($('<span>', {text: newmap[ | .append($('<span>', {text: newmap[data].title + ',\u200f '})); | ||
else if (vvv > 0) | else if (vvv > 0) | ||
$('#newrevs') | $('#newrevs') | ||
.append($('<span>', {text: newmap[ | .append($('<span>', {text: newmap[data].title + ',\u200f ', id: 'gold-little-' + data}) | ||
.prepend($('.gold-' + | .prepend($('.gold-' + data).clone(true, true)[0])); | ||
else | else | ||
$('#newrevs') | $('#newrevs') | ||
.append($('<span>', {text: ',\u200f '}) | .append($('<span>', {text: ',\u200f '}) | ||
.prepend($('<a>', {text: newmap[ | .prepend($('<a>', {text: newmap[data].title, | ||
href: 'https://he.wikipedia.org/w/index.php?title=' + | href: 'https://he.wikipedia.org/w/index.php?title=' + | ||
newmap[ | newmap[data].title + | ||
'&redirect=no&diff=cur&oldid=' + newmap[ | '&redirect=no&diff=cur&oldid=' + newmap[data].oldid, | ||
target: '_blank' | target: '_blank' | ||
}) | }) | ||
שורה 567: | שורה 568: | ||
$(this).parent(). | $(this).parent(). | ||
remove(); | remove(); | ||
$('.yellowedit') | |||
.hide(); | |||
$('body').trigger( 'script-88-pretend-clicked' ); | $('body').trigger( 'script-88-pretend-clicked' ); | ||
}))); | }))); | ||
שורה 573: | שורה 576: | ||
.append($('<span>', { | .append($('<span>', { | ||
text: '\u200f☺', | text: '\u200f☺', | ||
title: 'closenew', | title: i18n('closenew'), | ||
id: 'closenew' | id: 'closenew' | ||
}) | }) |