mirror of https://github.com/zulip/zulip.git
Prevent dragging of Click/Unclick-all links.
We have links when to create a stream to "Click all" or "Unclick all" for checkboxes. In FF it's easy to accidentally start dragging these links, which has no real value (since their href is uninteresting) and is confusing. Perhaps these should just be buttons.
This commit is contained in:
parent
80ea7db4d9
commit
ddf17abf5c
|
@ -23,8 +23,8 @@
|
|||
|
||||
|
||||
<div>
|
||||
<a href="#" class="subs_set_all_users">{{t "Check all" }}</a> |
|
||||
<a href="#" class="subs_unset_all_users">{{t "Uncheck all" }}</a>
|
||||
<a href="#" draggable="false" class="subs_set_all_users">{{t "Check all" }}</a> |
|
||||
<a href="#" draggable="false" class="subs_unset_all_users">{{t "Uncheck all" }}</a>
|
||||
</div>
|
||||
|
||||
<div id="user-checkboxes">
|
||||
|
|
Loading…
Reference in New Issue