1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/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

11 lines
150 B
JavaScript

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