| 2012 | $(document).on('click', '#rm_button_group_chats', onGroupCreateClick); | 2012 | $(document).on('click', '#rm_button_group_chats', onGroupCreateClick); |
| 2013 | $(document).on('click', '.tag_remove', onTagRemoveClick); | 2013 | $(document).on('click', '.tag_remove', onTagRemoveClick); |
| 2014 | $(document).on('input', '.tag_input', onTagInput); | 2014 | $(document).on('input', '.tag_input', onTagInput); |
| 2015 | $(document).on('click', '.tags_view', onViewTagsListClick); | 2015 | $(document).on('click', '.tags_view', function (event) { |
| | 2016 | // 1. Prevent the label from toggling the checkbox |
| | 2017 | event.preventDefault(); |
| | 2018 | // 2. Open the tag view list dialog |
| | 2019 | onViewTagsListClick(); |
| | 2020 | }); |
| 2016 | $(document).on('click', '.tag_delete', onTagDeleteClick); | 2021 | $(document).on('click', '.tag_delete', onTagDeleteClick); |
| 2017 | $(document).on('click', '.tag_as_folder', onTagAsFolderClick); | 2022 | $(document).on('click', '.tag_as_folder', onTagAsFolderClick); |
| 2018 | $(document).on('input', '.tag_view_name', onTagRenameInput); | 2023 | $(document).on('input', '.tag_view_name', onTagRenameInput); |