1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/src/UI/Shared/Tooltip.js
T
2014-06-02 08:11:56 -07:00

19 lines
336 B
JavaScript

'use strict';
define(
[
'jquery'
], function ($) {
return {
appInitializer: function () {
console.log('starting signalR');
$('body').tooltip({
selector: '[title]'
});
return this;
}
};
});