mirror of
https://github.com/redmine/redmine.git
synced 2026-05-07 21:46:35 +02:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user