parent
6ee876392c
commit
34ca5d4014
@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'jquery'
|
||||
], function ($) {
|
||||
return {
|
||||
|
||||
appInitializer: function () {
|
||||
console.log('starting signalR');
|
||||
|
||||
$('body').tooltip({
|
||||
selector: '[title]',
|
||||
container: 'body'
|
||||
});
|
||||
|
||||
$(document).click(function(e) {
|
||||
|
||||
if ($(e.target).attr('title') !== undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
$('.tooltip').remove();
|
||||
});
|
||||
|
||||
return this;
|
||||
}
|
||||
};
|
||||
});
|
Loading…
Reference in new issue