>>108938819
I use firefox. The profile tab syncing and whatnot is way better than chromium browsers for some reason
>>108939519
Hi ho, I think the code is:
//old code to sort things to the top.
/*Index.sortOnTop(function(obj) {
return obj.isOnTop || Conf['Pin Watched Threads'] && ThreadWatcher.isWatchedRaw(obj.boardID, obj.threadID);
});*/
//This was separated out as I think it is related to the top:yes|no setting in filters - and we still want to pin top filters to the top :)
Index.sortOnTop(function(obj) {
return obj.isOnTop;
});
//But sort the watched threads to the bottom - aka, anchor them
Index.sortOnTop(function(obj) {
return Conf['Pin Watched Threads'] && !ThreadWatcher.isWatchedRaw(obj.boardID, obj.threadID);
});