When using the french locale, the tooltip that appears over then pencil icon when hovering an editable allows show an empty tooltip.
Worked around with:
ToolTipPlugin.prototype.init = function() {
this.raptor.bind('layoutReady', function(node) {
$(node)
.on('mouseover', '[title]', function(event) {
if ($(this).attr('title')) {
$(this)
.attr('data-title', $(this).attr('title'))
.removeAttr('title');
}
});
});
};
When using the french locale, the tooltip that appears over then pencil icon when hovering an editable allows show an empty tooltip.
Worked around with: