Revert updatere's scrolling behavior. Fix #142

This commit is contained in:
Nicolas Stepien 2012-02-01 20:24:38 +01:00
parent b1aecb607a
commit 97358afef9
3 changed files with 3 additions and 2 deletions

View File

@ -2389,7 +2389,7 @@
}
}
$.before(updater.br, frag);
if (scroll) return updater.br.previousSibling.scrollIntoView(false);
if (scroll) return updater.br.previousSibling.scrollIntoView();
}
},
timeout: function() {

View File

@ -1,5 +1,6 @@
master
- Mayhem
Reverted updater's scrolling behavior.
Fix image posting on Firefox along with Unicode characters in the form.
2.25.1

View File

@ -1887,7 +1887,7 @@ updater =
$.before updater.br, frag
if scroll
updater.br.previousSibling.scrollIntoView(false)
updater.br.previousSibling.scrollIntoView()
timeout: ->
updater.timeoutID = setTimeout updater.timeout, 1000