mirror of https://github.com/zulip/zulip.git
compose_box: Move send-control-button Tippy logic to compose file.
This commit is contained in:
parent
e82c875bc3
commit
fd8711023d
|
@ -56,6 +56,13 @@ export function initialize() {
|
|||
appendTo: () => document.body,
|
||||
});
|
||||
|
||||
delegate("body", {
|
||||
target: ".send-control-button",
|
||||
delay: LONG_HOVER_DELAY,
|
||||
placement: "top",
|
||||
appendTo: () => document.body,
|
||||
});
|
||||
|
||||
delegate("body", {
|
||||
target: "#compose-send-button",
|
||||
delay: EXTRA_LONG_HOVER_DELAY,
|
||||
|
|
|
@ -445,13 +445,6 @@ export function initialize() {
|
|||
appendTo: () => document.body,
|
||||
});
|
||||
|
||||
delegate("body", {
|
||||
target: ".send-control-button",
|
||||
delay: LONG_HOVER_DELAY,
|
||||
placement: "top",
|
||||
appendTo: () => document.body,
|
||||
});
|
||||
|
||||
delegate("body", {
|
||||
target: ["#stream_creation_form .add_subscribers_disabled"],
|
||||
content: $t({
|
||||
|
|
Loading…
Reference in New Issue