Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00:00

20 lines
490 B
JavaScript

define(['../throttle', '../on'], function(throttle, on){
// summary:
// This module provides an event throttler for dojo/on
// module:
// dojo/on/throttle
return function(selector, delay){
// summary:
// event parser for custom events
// selector: String
// The selector to check against
// delay: Interger
// The amount of ms before testing the selector
return function(node, listenerFnc){
return on(node, selector, throttle(listenerFnc, delay));
};
};
});