Merge branch 'master' into quotify

This commit is contained in:
Nicolas Stepien 2012-03-12 11:51:12 +01:00
commit 326a269e14
2 changed files with 5 additions and 2 deletions

View File

@ -1812,7 +1812,7 @@
for (_j = 0, _len2 = _ref2.length; _j < _len2; _j++) {
name = _ref2[_j];
input = $("[name=" + name + "]", qr.el);
_ref3 = ['textInput', 'keyup', 'change', 'paste'];
_ref3 = ['input', 'keyup', 'change', 'paste'];
for (_k = 0, _len3 = _ref3.length; _k < _len3; _k++) {
event = _ref3[_k];
$.on(input, event, function() {

View File

@ -1489,7 +1489,10 @@ qr =
# save selected reply's data
for name in ['name', 'email', 'sub', 'com']
input = $ "[name=#{name}]", qr.el
for event in ['textInput', 'keyup', 'change', 'paste']
for event in ['input', 'keyup', 'change', 'paste']
# The input event replaces keyup, change and paste events.
# Firefox 12 will support the input event.
# Oprah?
$.on input, event, ->
qr.selected[@name] = @value
# Disable auto-posting if you're typing in the first reply