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 38a26cd739)
This commit is contained in:
Alejandro Gallardo Escobar 2016-05-18 15:30:44 +02:00
parent c4c37c1e15
commit a0097dc31d
1 changed files with 3 additions and 3 deletions

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