Merge pull request #2 from ccd0/nobump

fix navigation bug
This commit is contained in:
Bjorn Lim 2014-04-03 20:43:57 +08:00
commit b016db3f4f
4 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* 4chan X - Version 1.4.1 - 2014-04-02
* 4chan X - Version 1.4.1 - 2014-04-03
*
* Licensed under the MIT license.
* https://github.com/Spittie/4chan-x/blob/master/LICENSE

View File

@ -24,7 +24,7 @@
// ==/UserScript==
/*
* 4chan X - Version 1.4.1 - 2014-04-02
* 4chan X - Version 1.4.1 - 2014-04-03
*
* Licensed under the MIT license.
* https://github.com/Spittie/4chan-x/blob/master/LICENSE
@ -6220,6 +6220,9 @@
flagsInput: function() {
var flag, nodes;
nodes = QR.nodes;
if (!nodes) {
return;
}
if (nodes.flagSelector) {
$.rm(nodes.flagSelector);
delete nodes.flagSelector;

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript
/*
* 4chan X - Version 1.4.1 - 2014-04-02
* 4chan X - Version 1.4.1 - 2014-04-03
*
* Licensed under the MIT license.
* https://github.com/Spittie/4chan-x/blob/master/LICENSE
@ -6245,6 +6245,9 @@
flagsInput: function() {
var flag, nodes;
nodes = QR.nodes;
if (!nodes) {
return;
}
if (nodes.flagSelector) {
$.rm(nodes.flagSelector);
delete nodes.flagSelector;

View File

@ -569,6 +569,7 @@ QR =
flagsInput: ->
{nodes} = QR
return if not nodes
if nodes.flagSelector
$.rm nodes.flagSelector
delete nodes.flagSelector