mirror of
https://github.com/maputnik/editor.git
synced 2025-12-24 07:00:01 +00:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
import lodash from 'lodash'
|
|
|
|
|
|
// Throttle for 3 seconds so when a user enables it they don't have to refresh the page.
|
|
const reducedMotionEnabled = lodash.throttle(() => {
|
|
return window.matchMedia("(prefers-reduced-motion: reduce)").matches
|
|
}, 3000);
|
|
|
|
|
|
export default {
|
|
reducedMotionEnabled
|
|
}
|