summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-27 10:21:41 +0100
committerGravatar Tom Willemse2013-11-27 10:21:41 +0100
commitf7e4ab3af47e0a5e87dcb66a955976a9ad059e31 (patch)
treec11aebb47c19aaa7a258365f738274308cb479b9
parent0ca56aa4baca097f9cf12d2ea1cf36f1576dc726 (diff)
downloadconkeror-f7e4ab3af47e0a5e87dcb66a955976a9ad059e31.tar.gz
conkeror-f7e4ab3af47e0a5e87dcb66a955976a9ad059e31.zip
No need to overwrite anything, fixed
-rw-r--r--.conkerorrc/init.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/.conkerorrc/init.js b/.conkerorrc/init.js
index e3b53f8..3385ad1 100644
--- a/.conkerorrc/init.js
+++ b/.conkerorrc/init.js
@@ -281,13 +281,3 @@ register_user_stylesheet(
oni_add_sheet("github.css");
oni_add_sheet("help.css");
oni_add_sheet("git-scm.css");
-
-// Overwrite built-in one
-function scroll_horiz_complete (buffer, n, y) {
- var w = buffer.focused_frame;
- w.scrollTo (n > 0 ? w.scrollMaxX : 0, y == null ? w.scrollY : y);
-}
-
-interactive("scroll-top-left",
- "Scroll the current frame all the way to the top left",
- function (I) { scroll_horiz_complete(I.buffer, -1, 0); });