From 8852d158b009890c4e8defeabd38ff245c2dfb4d Mon Sep 17 00:00:00 2001 From: James Campos Date: Sat, 19 Mar 2011 11:38:54 -0700 Subject: [PATCH] move updater to bottom-right so that it doesn't cover up the options button --- 4chan_x.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 85ca8205a..898861e06 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -1339,7 +1339,7 @@ html += "
"; html += "
"; html += "
"; - div = new Dialog('updater', 'topright', html).el; + div = new Dialog('updater', 'bottomright', html).el; _ref = $$('input[type=checkbox]', div); for (_i = 0, _len = _ref.length; _i < _len; _i++) { input = _ref[_i]; diff --git a/script.coffee b/script.coffee index b3f2766d2..61883eb6d 100644 --- a/script.coffee +++ b/script.coffee @@ -986,7 +986,7 @@ updaterMake = -> html += "
" html += "
" html += "
" - div = new Dialog('updater', 'topright', html).el + div = new Dialog('updater', 'bottomright', html).el for input in $$ 'input[type=checkbox]', div input.addEventListener 'click', changeCheckbox, true