1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-29 11:03:08 -05:00

18 lines
312 B
JavaScript
Raw Normal View History

2017-09-13 17:24:33 +09:00
export const HEIGHT_CACHE_SET = 'HEIGHT_CACHE_SET';
export const HEIGHT_CACHE_CLEAR = 'HEIGHT_CACHE_CLEAR';
export function setHeight (key, id, height) {
return {
type: HEIGHT_CACHE_SET,
key,
id,
height,
};
}
2017-09-13 17:24:33 +09:00
export function clearHeight () {
return {
type: HEIGHT_CACHE_CLEAR,
};
}