MediaWiki:Gadget-CatWatch.js: differenze tra le versioni

Contenuto cancellato Contenuto aggiunto
m spazi
m spazi
Riga 132:
var ts = parseTimestamp(page.timestamp);
if (watchlist[ts.date]) {
$.each(watchlist[ts.date], function(i, entry) {
if (entry.time < ts.time) {
var el = createWatchlistEl(page.title, ts.time, category);
entry.el.before(el);
// aggiorna l'array
watchlist[ts.date].splice(i, 0, el);
return false;
}
}
});
});
}
}
}
}
 
$(document).ready(function () {