]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Web/JavaScript/tooltip.js
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / protected / Web / JavaScript / tooltip.js
1 //Opentip.defaultStyle = 'rounded';
2 function showTip(el, title, description) {
3         new Opentip(el, description, title, {
4                         stem: true, 
5                         fixed: true, 
6                         tipJoint: 'left middle',
7                         target: true,
8                         showOn: 'creation'
9                 });
10 }