diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee
index 9032940fe..9ca9ee6e5 100644
--- a/src/General/Settings.coffee
+++ b/src/General/Settings.coffee
@@ -454,7 +454,8 @@ Settings =
$('.warning', section).hidden = Conf['Sauce']
ta = $ 'textarea', section
$.get 'sauces', Conf['sauces'], (item) ->
- (ta.value = item['sauces'])
+ ta.value = item['sauces']
+ (ta.hidden = false) # XXX prevent Firefox from adding initialization to undo queue
$.on ta, 'change', $.cb.value
advanced: (section) ->
@@ -482,6 +483,7 @@ Settings =
for key, val of items
input = inputs[key]
input[if input.type is 'checkbox' then 'checked' else 'value'] = val
+ input.hidden = false # XXX prevent Firefox from adding initialization to undo queue
if key of Settings
Settings[key].call input
return
diff --git a/src/General/Settings/Advanced.html b/src/General/Settings/Advanced.html
index 3934d557e..97a402c18 100644
--- a/src/General/Settings/Advanced.html
+++ b/src/General/Settings/Advanced.html
@@ -15,7 +15,7 @@
Archive Lists: Each line below should be an archive list in this format or a URL to load an archive list from.
Archive properties can be overriden by another item with the same uid (or if absent, its name).
-
+
Last updated:
@@ -27,7 +27,7 @@