mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
rjs -> webpack
This commit is contained in:
@@ -1,18 +1,9 @@
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'jquery'
|
||||
], function ($) {
|
||||
return {
|
||||
var $ = require('jquery');
|
||||
|
||||
appInitializer: function () {
|
||||
console.log('starting signalR');
|
||||
|
||||
$('body').tooltip({
|
||||
selector: '[title]'
|
||||
});
|
||||
|
||||
return this;
|
||||
}
|
||||
};
|
||||
});
|
||||
module.exports = {
|
||||
appInitializer : function(){
|
||||
console.log('starting signalR');
|
||||
$('body').tooltip({selector : '[title]'});
|
||||
return this;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user