mirror of https://github.com/zulip/zulip.git
Fix typo preventing focus on new subscriptions box after tabbing over.
(imported from commit 45a6dd8e514a2233517cfaea5a5c0b8d94c62f46)
This commit is contained in:
parent
f4e04a045a
commit
aa2e4efc2c
|
@ -95,7 +95,7 @@ $(function () {
|
||||||
$('#subscriptions_table').append(templates.subscription({subscription: name}));
|
$('#subscriptions_table').append(templates.subscription({subscription: name}));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
$('#new_subscriptions').focus().select();
|
$('#new_subscription').focus().select();
|
||||||
$("#subscriptions-status").fadeOut(0);
|
$("#subscriptions-status").fadeOut(0);
|
||||||
},
|
},
|
||||||
error: function (xhr) {
|
error: function (xhr) {
|
||||||
|
|
Loading…
Reference in New Issue