mirror of
https://github.com/Radarr/Radarr
synced 2025-12-14 20:33:44 +01:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
"use strict";
|
|
define(
|
|
[
|
|
'bootstrap'
|
|
], function () {
|
|
$(document).on('mouseenter', '[title]', function () {
|
|
$(this).tooltip('show');
|
|
});
|
|
});
|