mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 23:13:25 +00:00
Previously this dropdown was only for selecting streams, but soon it will also be for switching to a private message. This name helps it be clearer that the dropdown is more general purpose.
14 lines
431 B
JavaScript
14 lines
431 B
JavaScript
"use strict";
|
|
|
|
const $ = require("./zjquery");
|
|
|
|
exports.mock_stream_header_colorblock = () => {
|
|
const $stream_selection_dropdown = $("#compose_recipient_selection_dropdown");
|
|
const $stream_header_colorblock = $(".stream_header_colorblock");
|
|
$(".stream_header_colorblock").css = () => {};
|
|
$stream_selection_dropdown.set_find_results(
|
|
".stream_header_colorblock",
|
|
$stream_header_colorblock,
|
|
);
|
|
};
|