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:
Alejandro Gallardo Escobar 2016-05-18 15:30:44 +02:00
parent c4c37c1e15
commit a0097dc31d

View File

@ -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();
});
}