Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95158846
animationFrame.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Dec 13, 08:10
Size
1 KB
Mime Type
text/x-java
Expires
Sun, Dec 15, 08:10 (2 d)
Engine
blob
Format
Raw Data
Handle
22916320
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
animationFrame.js
View Options
import
canUseDOM
from
'./canUseDOM'
;
/* https://github.com/component/raf */
var
prev
=
new
Date
().
getTime
();
function
fallback
(
fn
)
{
var
curr
=
new
Date
().
getTime
();
var
ms
=
Math
.
max
(
0
,
16
-
(
curr
-
prev
));
var
handle
=
setTimeout
(
fn
,
ms
);
prev
=
curr
;
return
handle
;
}
var
vendors
=
[
''
,
'webkit'
,
'moz'
,
'o'
,
'ms'
];
var
cancelMethod
=
'clearTimeout'
;
var
rafImpl
=
fallback
;
// eslint-disable-next-line import/no-mutable-exports
var
getKey
=
function
getKey
(
vendor
,
k
)
{
return
vendor
+
(
!
vendor
?
k
:
k
[
0
].
toUpperCase
()
+
k
.
substr
(
1
))
+
"AnimationFrame"
;
};
if
(
canUseDOM
)
{
vendors
.
some
(
function
(
vendor
)
{
var
rafMethod
=
getKey
(
vendor
,
'request'
);
if
(
rafMethod
in
window
)
{
cancelMethod
=
getKey
(
vendor
,
'cancel'
);
// @ts-ignore
rafImpl
=
function
rafImpl
(
cb
)
{
return
window
[
rafMethod
](
cb
);
};
}
return
!!
rafImpl
;
});
}
export
var
cancel
=
function
cancel
(
id
)
{
// @ts-ignore
if
(
typeof
window
[
cancelMethod
]
===
'function'
)
window
[
cancelMethod
](
id
);
};
export
var
request
=
rafImpl
;
Event Timeline
Log In to Comment