tweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloud
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.
21 lines
541 B
21 lines
541 B
/** */ |
|
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 |
|
}); |
|
} |
|
});
|
|
|