1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 09:37:12 +00:00
Lidarr/UI/jQuery/TooltipBinder.js
Mark McDowall c132d54ff7 This should fix the sticky tooltip issues
Lost some control over positioning based on parents, but we can add data attributes if required
2013-07-30 23:25:44 -07:00

10 lines
150 B
JavaScript

'use strict';
define(
[
'bootstrap'
], function () {
$('body').tooltip({
selector: '[title]'
});
});