User:MusikAnimal/customWatchlists.js: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 53:
if(wgRelevantPageName === "Special:Watchlist") {
getCustomWatchlists().then(function(data) {
var customWatchlists = JSON.parse(data.split("\n")[0]);
var customWatchlistNames = Object.keys(customWatchlists);
var html = "<form id='custom_watchlist_form'><fieldset style='margin:20px 0px'>" +
Line 92:
if($("#cw-overlay")[0]) return false;
getCustomWatchlists().then(function(data) {
var customWatchlists = JSON.parse(data.split("\n")[0]),
customWatchlistNames = Object.keys(customWatchlists),
inWatchlists = [];