[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
kesiswaan
/
vendors
/
bower_components
/
nouislider
/
src
/
js
/
[
Home
]
File: tooltips.js
function addTooltip ( handle, index ) { if ( !options.tooltips[index] ) { return false; } var element = document.createElement('div'); element.className = cssClasses[18]; return handle.firstChild.appendChild(element); } // The tooltips option is a shorthand for using the 'update' event. function tooltips ( ) { if ( options.dir ) { options.tooltips.reverse(); } // Tooltips are added with options.tooltips in original order. var tips = scope_Handles.map(addTooltip); if ( options.dir ) { tips.reverse(); options.tooltips.reverse(); } bindEvent('update', function(f, o, r) { if ( tips[o] ) { tips[o].innerHTML = options.tooltips[o] === true ? f[o] : options.tooltips[o].to(r[o]); } }); }