diff --git a/LICENSE b/LICENSE index 0e9931518..f8b9c7b4d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* 4chan X - Version 1.2.8 - 2013-05-20 +* 4chan X - Version 1.2.8 - 2013-05-24 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE diff --git a/builds/4chan-X.js b/builds/4chan-X.js index 93647696f..0533ed65c 100644 --- a/builds/4chan-X.js +++ b/builds/4chan-X.js @@ -19,7 +19,7 @@ // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAACVBMVEUAAGcAAABmzDNZt9VtAAAAAXRSTlMAQObYZgAAAHFJREFUKFOt0LENACEIBdBv4Qju4wgWanEj3D6OcIVMKaitYHEU/jwTCQj8W75kiVCSBvdQ5/AvfVHBin11BgdRq3ysBgfwBDRrj3MCIA+oAQaku/Q1cNctrAmyDl577tOThYt/Y1RBM4DgOHzM0HFTAyLukH/cmRnqAAAAAElFTkSuQmCC // ==/UserScript== /* -* 4chan X - Version 1.2.8 - 2013-05-20 +* 4chan X - Version 1.2.8 - 2013-05-24 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -4662,7 +4662,11 @@ } $.ready(this.initReady); if (Conf['Persistent QR']) { - $.on(d, '4chanXInitFinished', this.persist); + if (g.BOARD.ID !== 'f') { + $.on(d, '4chanXInitFinished', this.persist); + } else { + $.ready(this.persist); + } } return Post.prototype.callbacks.push({ name: 'Quick Reply', diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 8a7b881c4..c892b8fb0 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -19,7 +19,7 @@ // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAACVBMVEUAAGcAAABmzDNZt9VtAAAAAXRSTlMAQObYZgAAAHFJREFUKFOt0LENACEIBdBv4Qju4wgWanEj3D6OcIVMKaitYHEU/jwTCQj8W75kiVCSBvdQ5/AvfVHBin11BgdRq3ysBgfwBDRrj3MCIA+oAQaku/Q1cNctrAmyDl577tOThYt/Y1RBM4DgOHzM0HFTAyLukH/cmRnqAAAAAElFTkSuQmCC // ==/UserScript== /* -* 4chan X - Version 1.2.8 - 2013-05-20 +* 4chan X - Version 1.2.8 - 2013-05-24 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -4646,7 +4646,11 @@ } $.ready(this.initReady); if (Conf['Persistent QR']) { - $.on(d, '4chanXInitFinished', this.persist); + if (g.BOARD.ID !== 'f') { + $.on(d, '4chanXInitFinished', this.persist); + } else { + $.ready(this.persist); + } } return Post.prototype.callbacks.push({ name: 'Quick Reply', diff --git a/builds/crx/script.js b/builds/crx/script.js index ffdba7c90..b7fc37ff6 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* 4chan X - Version 1.2.8 - 2013-05-20 +* 4chan X - Version 1.2.8 - 2013-05-24 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -4648,7 +4648,11 @@ } $.ready(this.initReady); if (Conf['Persistent QR']) { - $.on(d, '4chanXInitFinished', this.persist); + if (g.BOARD.ID !== 'f') { + $.on(d, '4chanXInitFinished', this.persist); + } else { + $.ready(this.persist); + } } return Post.prototype.callbacks.push({ name: 'Quick Reply', diff --git a/src/Posting/QuickReply.coffee b/src/Posting/QuickReply.coffee index 8fe333372..5228baedb 100644 --- a/src/Posting/QuickReply.coffee +++ b/src/Posting/QuickReply.coffee @@ -26,7 +26,12 @@ QR = $.asap (-> doc), -> $.addClass doc, 'hide-original-post-form' $.ready @initReady - $.on d, '4chanXInitFinished', @persist if Conf['Persistent QR'] + + if Conf['Persistent QR'] + unless g.BOARD.ID is 'f' + $.on d, '4chanXInitFinished', @persist + else + $.ready @persist Post::callbacks.push name: 'Quick Reply'