fix overflowing keybinds

This commit is contained in:
James Campos 2011-06-25 10:55:26 -07:00
parent d3ecc12c4d
commit 0f4a5891f2
2 changed files with 3 additions and 7 deletions

View File

@ -1388,7 +1388,7 @@
_ref = c.textContent.match(/thread:(\d+),no:(\d+)/), _ = _ref[0], thread = _ref[1], id = _ref[2]; _ref = c.textContent.match(/thread:(\d+),no:(\d+)/), _ = _ref[0], thread = _ref[1], id = _ref[2];
if (thread === '0') { if (thread === '0') {
return window.location = "http://boards.4chan.org/" + g.BOARD + "/res/" + id + "#watch"; return window.location = "http://boards.4chan.org/" + g.BOARD + "/res/" + id + "#watch";
} else if (/AEOS.4chan_x.auto_noko=true/.test(d.cookie)) { } else if (d.cookie.indexOf("" + NAMESPACE + "auto_noko") > -1) {
return window.location = "http://boards.4chan.org/" + g.BOARD + "/res/" + thread + "#" + id; return window.location = "http://boards.4chan.org/" + g.BOARD + "/res/" + thread + "#" + id;
} }
} }
@ -2889,11 +2889,9 @@
#floaty {\ #floaty {\
float: left;\ float: left;\
}\ }\
#options #main {\
overflow: auto;\
}\
#content > * {\ #content > * {\
height: 500px;\ height: 500px;\
overflow: auto;\
}\ }\
#content textarea {\ #content textarea {\
margin: 0;\ margin: 0;\

View File

@ -2291,11 +2291,9 @@ main =
#floaty { #floaty {
float: left; float: left;
} }
#options #main {
overflow: auto;
}
#content > * { #content > * {
height: 500px; height: 500px;
overflow: auto;
} }
#content textarea { #content textarea {
margin: 0; margin: 0;