Changelog, technical stuff.
This commit is contained in:
parent
7f081e8345
commit
d5d3ee86f9
@ -1,12 +1,15 @@
|
||||
seaweedchan:
|
||||
- Fix emoji and favicon previews not updating on change.
|
||||
- Fix issue with draggong thread watcher
|
||||
- Fix issue with dragging thread watcher
|
||||
|
||||
MayhemYDG:
|
||||
- Fix bug where a thread would freeze on load.
|
||||
|
||||
zixaphir:
|
||||
- Fix preview with favicons and emoji
|
||||
- Fix NaN error on Thread Updater Interval
|
||||
- Draggable UI can no longer overlap the Header.
|
||||
-- Setting the header to Autohide also increases its z-index to overlap other UI
|
||||
|
||||
### 1.1.1 - 2013-04-26
|
||||
zixaphir:
|
||||
|
||||
@ -110,8 +110,7 @@
|
||||
var $, $$, Anonymize, ArchiveLink, Board, Build, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DataBoards, DeleteLink, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Get, Header, IDColor, ImageExpand, ImageHover, ImageReplace, Keybinds, Linkify, Main, Menu, Nav, Notification, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g,
|
||||
__slice = [].slice,
|
||||
__hasProp = {}.hasOwnProperty,
|
||||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
||||
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
|
||||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
|
||||
|
||||
Config = {
|
||||
main: {
|
||||
@ -4094,7 +4093,7 @@
|
||||
a.setAttribute('data-postid', postID);
|
||||
}
|
||||
}
|
||||
if (__indexOf.call(this.quotes, quoteID) < 0) {
|
||||
if (!this.quotes.contains(quoteID)) {
|
||||
this.quotes.push(quoteID);
|
||||
}
|
||||
if (!a) {
|
||||
@ -7626,10 +7625,10 @@
|
||||
});
|
||||
},
|
||||
sync: function(hiddenPSAs) {
|
||||
var hr, psa, _ref;
|
||||
var hr, psa;
|
||||
|
||||
psa = $.id('globalMessage');
|
||||
psa.hidden = PSAHiding.btn.hidden = (_ref = PSAHiding.trim(psa), __indexOf.call(hiddenPSAs, _ref) >= 0) ? true : false;
|
||||
psa.hidden = PSAHiding.btn.hidden = hiddenPSAs.contains(PSAHiding.trim(psa)) ? true : false;
|
||||
if ((hr = psa.nextElementSibling) && hr.nodeName === 'HR') {
|
||||
return hr.hidden = psa.hidden;
|
||||
}
|
||||
|
||||
@ -110,8 +110,7 @@
|
||||
var $, $$, Anonymize, ArchiveLink, Board, Build, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DataBoards, DeleteLink, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Get, Header, IDColor, ImageExpand, ImageHover, ImageReplace, Keybinds, Linkify, Main, Menu, Nav, Notification, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g,
|
||||
__slice = [].slice,
|
||||
__hasProp = {}.hasOwnProperty,
|
||||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
||||
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
|
||||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
|
||||
|
||||
Config = {
|
||||
main: {
|
||||
@ -4090,7 +4089,7 @@
|
||||
a.setAttribute('data-postid', postID);
|
||||
}
|
||||
}
|
||||
if (__indexOf.call(this.quotes, quoteID) < 0) {
|
||||
if (!this.quotes.contains(quoteID)) {
|
||||
this.quotes.push(quoteID);
|
||||
}
|
||||
if (!a) {
|
||||
@ -7647,10 +7646,10 @@
|
||||
});
|
||||
},
|
||||
sync: function(hiddenPSAs) {
|
||||
var hr, psa, _ref;
|
||||
var hr, psa;
|
||||
|
||||
psa = $.id('globalMessage');
|
||||
psa.hidden = PSAHiding.btn.hidden = (_ref = PSAHiding.trim(psa), __indexOf.call(hiddenPSAs, _ref) >= 0) ? true : false;
|
||||
psa.hidden = PSAHiding.btn.hidden = hiddenPSAs.contains(PSAHiding.trim(psa)) ? true : false;
|
||||
if ((hr = psa.nextElementSibling) && hr.nodeName === 'HR') {
|
||||
return hr.hidden = psa.hidden;
|
||||
}
|
||||
|
||||
@ -4092,7 +4092,7 @@
|
||||
a.setAttribute('data-postid', postID);
|
||||
}
|
||||
}
|
||||
if (__indexOf.call(this.quotes, quoteID) < 0) {
|
||||
if (!this.quotes.contains(quoteID)) {
|
||||
this.quotes.push(quoteID);
|
||||
}
|
||||
if (!a) {
|
||||
@ -7630,10 +7630,10 @@
|
||||
});
|
||||
},
|
||||
sync: function(hiddenPSAs) {
|
||||
var hr, psa, _ref;
|
||||
var hr, psa;
|
||||
|
||||
psa = $.id('globalMessage');
|
||||
psa.hidden = PSAHiding.btn.hidden = (_ref = PSAHiding.trim(psa), __indexOf.call(hiddenPSAs, _ref) >= 0) ? true : false;
|
||||
psa.hidden = PSAHiding.btn.hidden = hiddenPSAs.contains(PSAHiding.trim(psa)) ? true : false;
|
||||
if ((hr = psa.nextElementSibling) && hr.nodeName === 'HR') {
|
||||
return hr.hidden = psa.hidden;
|
||||
}
|
||||
|
||||
@ -57,7 +57,7 @@ PSAHiding =
|
||||
|
||||
sync: (hiddenPSAs) ->
|
||||
psa = $.id 'globalMessage'
|
||||
psa.hidden = PSAHiding.btn.hidden = if PSAHiding.trim(psa) in hiddenPSAs
|
||||
psa.hidden = PSAHiding.btn.hidden = if hiddenPSAs.contains PSAHiding.trim(psa)
|
||||
true
|
||||
else
|
||||
false
|
||||
|
||||
@ -64,7 +64,7 @@ Quotify =
|
||||
a.setAttribute 'data-boardid', boardID
|
||||
a.setAttribute 'data-postid', postID
|
||||
|
||||
unless quoteID in @quotes
|
||||
unless @quotes.contains quoteID
|
||||
@quotes.push quoteID
|
||||
|
||||
unless a
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user