mirror of https://github.com/zulip/zulip.git
Clean up how we deal with the message type tabs
(imported from commit 429e055d3eca65af8bc0fe58481a7becf9ced66a)
This commit is contained in:
parent
02f7ac42e7
commit
477bad9536
|
@ -105,14 +105,16 @@
|
|||
<tr>
|
||||
<td class="message_picture">
|
||||
<div id="stream_or_huddle">
|
||||
<ul class="nav nav-pills nav-stacked" id="message-type-tabs">
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li class="active">
|
||||
<a href="#stream-message" data-toggle="pill" title="Stream" tabindex="100">
|
||||
<a href="#stream-message" id="compose-stream"
|
||||
data-toggle="pill" title="Stream" tabindex="100">
|
||||
<i class="icon-bullhorn"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#personal-message" data-toggle="pill" title="Huddle" tabindex="110">
|
||||
<a href="#personal-message" id="compose-personal"
|
||||
data-toggle="pill" title="Huddle" tabindex="110">
|
||||
<i class="icon-user"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -114,7 +114,7 @@ exports.show = function (tabname, focus_area) {
|
|||
$('#compose').css({visibility: "visible"});
|
||||
$("#new_message_content").trigger("autosize");
|
||||
$('.message_comp').slideDown(100);
|
||||
$('#message-type-tabs a[href="#' + tabname + '-message"]').tab('show');
|
||||
$('#compose-' + tabname).tab('show');
|
||||
focus_area.focus();
|
||||
focus_area.select();
|
||||
};
|
||||
|
@ -147,7 +147,7 @@ exports.set_message_type = function (tabname) {
|
|||
|
||||
|
||||
exports.toggle_mode = function () {
|
||||
if ($("#message-type-tabs li.active").find("a[href=#stream-message]").length !== 0) {
|
||||
if ($('#compose-stream').parent().hasClass('active')) {
|
||||
// In stream tab, switch to personals.
|
||||
exports.show('personal', $("#huddle_recipient"));
|
||||
} else {
|
||||
|
|
|
@ -277,11 +277,10 @@ $(function () {
|
|||
// NB: This just binds to current elements, and won't bind to elements
|
||||
// created after ready() is called.
|
||||
|
||||
$('#message-type-tabs a[href="#stream-message"]').on('shown', function (e) {
|
||||
compose.set_message_type('stream');
|
||||
});
|
||||
$('#message-type-tabs a[href="#personal-message"]').on('shown', function (e) {
|
||||
compose.set_message_type('huddle');
|
||||
$.each(['stream', 'personal'], function (index, tabname) {
|
||||
$('#compose-' + tabname).on('shown', function (e) {
|
||||
compose.set_message_type(tabname);
|
||||
});
|
||||
});
|
||||
|
||||
// Prepare the click handler for subbing to a new stream to which
|
||||
|
|
|
@ -475,7 +475,7 @@ table.floating_recipient {
|
|||
border: 1px solid grey;
|
||||
}
|
||||
|
||||
#message-type-tabs {
|
||||
#stream_or_huddle ul {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue