Introduce reactions feature (so-called "like button") to issues, notes, news, and forums (#42630).

Patch by Katsuya HIDAKA (user:hidakatsuya).


git-svn-id: https://svn.redmine.org/redmine/trunk@23755 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2025-05-11 07:59:16 +00:00
parent b650804fe9
commit 403c10091f
42 changed files with 1612 additions and 11 deletions

View File

@@ -1222,8 +1222,8 @@ function setupWikiTableSortableHeader() {
});
}
function setupHoverTooltips() {
$("[title]:not(.no-tooltip)").tooltip({
function setupHoverTooltips(container) {
$(container || 'body').find("[title]:not(.no-tooltip)").tooltip({
show: {
delay: 400
},
@@ -1233,7 +1233,9 @@ function setupHoverTooltips() {
}
});
}
function removeHoverTooltips(container) {
$(container || 'body').find("[title]:not(.no-tooltip)").tooltip('destroy')
}
$(function() { setupHoverTooltips(); });
function inlineAutoComplete(element) {