fix navigation bug
This commit is contained in:
parent
bf6e918d0d
commit
6780ef629d
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.4.2 - 2014-04-02
|
||||
* 4chan X - Version 1.4.2 - 2014-04-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.4.2 - 2014-04-02
|
||||
* 4chan X - Version 1.4.2 - 2014-04-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/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;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// Generated by CoffeeScript
|
||||
/*
|
||||
* 4chan X - Version 1.4.2 - 2014-04-02
|
||||
* 4chan X - Version 1.4.2 - 2014-04-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/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;
|
||||
|
||||
@ -569,6 +569,7 @@ QR =
|
||||
|
||||
flagsInput: ->
|
||||
{nodes} = QR
|
||||
return if not nodes
|
||||
if nodes.flagSelector
|
||||
$.rm nodes.flagSelector
|
||||
delete nodes.flagSelector
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user