UNPKG
mdui
Version:
latest (2.1.5)
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.2
0.1.1
0.0.1
a CSS Framework based on material design
mdui.org
zdhxiong/mdui
mdui
/
es
/
jq_extends
/
static
/
throttle.js
14 lines
(13 loc)
•
347 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
$
from
'mdui.jq/es/$'
;
import
{ isNull }
from
'mdui.jq/es/utils'
; $.throttle =
function
(
fn, delay =
16
) {
let
timer =
null
;
return
function
(
...args
) {
if
(
isNull
(timer)) { timer =
setTimeout
(
() =>
{ fn.
apply
(
this
, args); timer =
null
; }, delay); } }; };