mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
19 lines
336 B
JavaScript
19 lines
336 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'jquery'
|
|
], function ($) {
|
|
return {
|
|
|
|
appInitializer: function () {
|
|
console.log('starting signalR');
|
|
|
|
$('body').tooltip({
|
|
selector: '[title]'
|
|
});
|
|
|
|
return this;
|
|
}
|
|
};
|
|
});
|