mirror of https://github.com/zulip/zulip.git
subs: rename .subscription_description to .description.
This commit is contained in:
parent
dd2fab9374
commit
3727ea6fb0
|
@ -170,7 +170,7 @@ function update_stream_description(sub, description) {
|
|||
sub.description = description;
|
||||
|
||||
var sub_settings_selector = '.stream-row[data-stream-id=' + sub.stream_id + ']';
|
||||
$(sub_settings_selector + ' .subscription_description').text(description);
|
||||
$(sub_settings_selector + ' .description').text(description);
|
||||
$(sub_settings_selector + ' input.description').val(description);
|
||||
}
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@
|
|||
html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.subscription_description {
|
||||
.stream_row .description {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<div class="subscription-info">
|
||||
<span class="stream-name subscription-name-row">{{name}}</span>
|
||||
<span class="subscriber_icon">(<span class="subscriber_count subscriber-count-row">{{subscriber_count}}</span> <i class="icon-vector-user"></i>)</span>
|
||||
<span class="subscription_description subscription-description-row light">{{description}}</span>
|
||||
<span class="description subscription-description-row light">{{description}}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue