mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'jquery'
|
|
], function ($) {
|
|
return {
|
|
|
|
appInitializer: function () {
|
|
console.log('starting signalR');
|
|
|
|
$('body').tooltip({
|
|
selector: '[title]'
|
|
});
|
|
|
|
return this;
|
|
}
|
|
};
|
|
});
|