Sunset with blue sky / Clouds glimmering and silky / Birds fly high to night
4
   
Award
Favorite
Favorited
Unfavorite
Download
"// XXX //console.log(jQuery('div.formRowFields')[0].innerText);
global.edit_response = response;
var error = Cheerio.load(edit_response.body)('div.formRowFields').eq(0).text().trim();
if (error.length) {
console.log(error);
}
// XXX or maybe its using an expired sessionid????

////////////////////////////////////////////////////////////////////////////////////////

// comment message selection/callback
// XXX always type -1 ( I want to pool these that'd be fun)
// XXX only called @ profile commenter anyway
comment_message = (callback, type = -1, args = '') => {
if (type == -1) {
type = Math.floor(Math.random()*comment_messages.length);
}
callback(comment_messages[type](args), type);
};
"