fix navigation bug

Conflicts:
	LICENSE
	builds/4chan-X.user.js
	builds/crx/script.js
This commit is contained in:
ccd0 2014-04-03 04:55:31 -07:00
parent 0366d9baaa
commit d943bf5024
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