bigbuffet-rw/app/soapbox/actions/height_cache.js

18 lines
312 B
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
export const HEIGHT_CACHE_SET = 'HEIGHT_CACHE_SET';
export const HEIGHT_CACHE_CLEAR = 'HEIGHT_CACHE_CLEAR';
export function setHeight(key, id, height) {
2020-03-27 13:59:38 -07:00
return {
type: HEIGHT_CACHE_SET,
key,
id,
height,
};
};
export function clearHeight() {
2020-03-27 13:59:38 -07:00
return {
type: HEIGHT_CACHE_CLEAR,
};
};