1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-28 18:05:41 -04:00
Files
Radarr/UI/jQuery/TooltipBinder.js

10 lines
188 B
JavaScript

"use strict";
define(
[
'bootstrap'
], function () {
$(document).on('mouseenter', '[title]', function () {
$(this).tooltip('show');
});
});