• I’ve noticed that tooltips were not always activated.
    It turned out that the event listener is not set up for dynamically loaded keywords.

    To fix this, only one line of code needs to be changed in kttg-tooltip-functions.js within the bluet_placeTooltips function

    Change

    	//add listeners to inline keywords on mouseover
    	jQuery(inlineClass).mouseover(function(){
    

    Into

    	//add listeners to inline keywords on mouseover
    	jQuery(document).on('mouseover', inlineClass, function(){
    

    Could you please change this in the next update?

  • The topic ‘Bugifx Tooltips dynamically loaded keywords’ is closed to new replies.