Now the custom title used in pandora uses event delegation, so won't be necessary to bind the event to new elements
This commit is contained in:
parent
ce150336a9
commit
38a26cd739
|
@ -160,7 +160,7 @@ $(document).ready (function () {
|
||||||
|
|
||||||
function forced_title_callback() {
|
function forced_title_callback() {
|
||||||
// Forced title code
|
// Forced title code
|
||||||
$('.forced_title').hover(function() {
|
$('body').on('mouseenter', '.forced_title', function() {
|
||||||
///////////////////////////////////////////
|
///////////////////////////////////////////
|
||||||
// Put the layer in the left-top corner to fill it
|
// 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('left', layer_left);
|
||||||
$('#forced_title_layer').css('top', layer_top);
|
$('#forced_title_layer').css('top', layer_top);
|
||||||
$('#forced_title_layer').show();
|
$('#forced_title_layer').show();
|
||||||
},
|
});
|
||||||
function () {
|
$('body').on('mouseout', '.forced_title', function () {
|
||||||
$('#forced_title_layer').hide().empty();
|
$('#forced_title_layer').hide().empty();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue