move updater to bottom-right

so that it doesn't cover up the options button
This commit is contained in:
James Campos 2011-03-19 11:38:54 -07:00
parent e064ac1241
commit 8852d158b0
2 changed files with 2 additions and 2 deletions

View File

@ -1339,7 +1339,7 @@
html += "<div><label title=\"Make this thread auto update\">Auto Update Local<input type=checkbox name=autoL></label></div>";
html += "<div><label>Interval (s)<input type=text name=interval></label></div>";
html += "<div><input type=button value='Update Now'></div>";
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];

View File

@ -986,7 +986,7 @@ updaterMake = ->
html += "<div><label title=\"Make this thread auto update\">Auto Update Local<input type=checkbox name=autoL></label></div>"
html += "<div><label>Interval (s)<input type=text name=interval></label></div>"
html += "<div><input type=button value='Update Now'></div>"
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