mirror of https://github.com/zulip/zulip.git
Rename zephyr_content to message_content.
(imported from commit 05e255ec275a8aeaf3967d6a4305cc4440c81913)
This commit is contained in:
parent
a259244f0b
commit
836971d3b3
|
@ -61,7 +61,7 @@
|
|||
</td>
|
||||
<td class="pointer"></td>
|
||||
<td class="messagebox">
|
||||
<div class="zephyr_content">
|
||||
<div class="message_content">
|
||||
<textarea class="zephyr_message" name="content" id="new_message_content" value="" placeholder="Compose your message here..."></textarea>
|
||||
<input type="submit" value="Send" class="btn send_zephyr"/>
|
||||
</div>
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
</span>
|
||||
{{/include_sender}}
|
||||
<span class="zephyr_time" title="{{full_date_str}}">{{{timestr}}}</span>
|
||||
<div class="zephyr_content">{{{content}}}</div>
|
||||
<div class="message_content">{{{content}}}</div>
|
||||
</td>
|
||||
</tr>
|
||||
{{/with}}
|
||||
|
|
|
@ -341,7 +341,7 @@ function add_to_table(zephyrs, table_name, filter_function, where) {
|
|||
var row = get_zephyr_row(zephyr.id, table_name);
|
||||
register_onclick(row, zephyr.id);
|
||||
|
||||
row.find('.zephyr_content a').each(function (index, link) {
|
||||
row.find('.message_content a').each(function (index, link) {
|
||||
link = $(link);
|
||||
link.attr('target', '_blank')
|
||||
.attr('title', link.attr('href'))
|
||||
|
|
|
@ -148,7 +148,7 @@ table.focused_table {
|
|||
display: table;
|
||||
}
|
||||
|
||||
.zephyr_content {
|
||||
.message_content {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue