skypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
541 B
22 lines
541 B
9 years ago
|
/** */
|
||
|
Ext.define('Ext.aria.slider.Tip', {
|
||
|
override: 'Ext.slider.Tip',
|
||
|
|
||
|
init: function(slider) {
|
||
|
var me = this,
|
||
|
timeout = slider.tipHideTimeout;
|
||
|
|
||
|
me.onSlide = Ext.Function.createThrottled(me.onSlide, 50, me);
|
||
|
me.hide = Ext.Function.createBuffered(me.hide, timeout, me);
|
||
|
|
||
|
me.callParent(arguments);
|
||
|
|
||
|
slider.on({
|
||
|
scope: me,
|
||
|
change: me.onSlide,
|
||
|
move: me.onSlide,
|
||
|
changecomplete: me.hide
|
||
|
});
|
||
|
}
|
||
|
});
|