5651b5aad9
Signed-off-by: Gergely Polonkai (W00d5t0ck) <polesz@w00d5t0ck.info>
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
$(document).ready(function() {
|
|
$('#username').tooltip({
|
|
bodyHandler: function() {
|
|
return 'User information will go here';
|
|
},
|
|
track: true,
|
|
delay: 0,
|
|
});
|
|
});
|