mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
Now the custom title used in pandora uses event delegation, so won't be necessary to bind the event to new elements
(cherry picked from commit 38a26cd73916afbca0b6219c8fa9e6af1054f6a5)
This commit is contained in:
parent
c4c37c1e15
commit
a0097dc31d
@ -160,7 +160,7 @@ $(document).ready (function () {
|
||||
|
||||
function forced_title_callback() {
|
||||
// Forced title code
|
||||
$('.forced_title').hover(function() {
|
||||
$('body').on('mouseenter', '.forced_title', function() {
|
||||
///////////////////////////////////////////
|
||||
// Put the layer in the left-top corner to fill it
|
||||
///////////////////////////////////////////
|
||||
@ -233,8 +233,8 @@ function forced_title_callback() {
|
||||
$('#forced_title_layer').css('left', layer_left);
|
||||
$('#forced_title_layer').css('top', layer_top);
|
||||
$('#forced_title_layer').show();
|
||||
},
|
||||
function () {
|
||||
});
|
||||
$('body').on('mouseout', '.forced_title', function () {
|
||||
$('#forced_title_layer').hide().empty();
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user