mirror of https://github.com/zulip/zulip.git
Fix style mistakes we didn't catch the first time
(imported from commit ae1ca10ea8559702e4e73481715239ff456eca4b)
This commit is contained in:
parent
8ba2d2ea8b
commit
5c7419307c
|
@ -40,7 +40,7 @@ var globals =
|
|||
+ ' composebox_typeahead'
|
||||
|
||||
// ui.js
|
||||
+ ' register_onclick hide_email show_email'
|
||||
+ ' register_onclick hide_email show_email focus_on'
|
||||
+ ' report_error report_success report_message clicking mouse_moved'
|
||||
+ ' userinfo_currently_popped update_gravatars gravatar_stamp'
|
||||
+ ' register_user_info_mouseover register_user_info_mouseout'
|
||||
|
|
|
@ -112,9 +112,9 @@ exports.initialize = function () {
|
|||
highlighter: composebox_typeahead_highlighter
|
||||
});
|
||||
|
||||
$("#stream").keypress(function(e) {handleEnter(e, "subject")});
|
||||
$("#subject").keypress(function(e) {handleEnter(e, "new_message_content")});
|
||||
$("#huddle_recipient").keypress(function(e) {handleEnter(e, "new_message_content")});
|
||||
$("#stream").keypress(function(e) {handleEnter(e, "subject");});
|
||||
$("#subject").keypress(function(e) {handleEnter(e, "new_message_content");});
|
||||
$("#huddle_recipient").keypress(function(e) {handleEnter(e, "new_message_content");});
|
||||
|
||||
$( "#subject" ).typeahead({
|
||||
source: function (query, process) {
|
||||
|
|
Loading…
Reference in New Issue