gab-social/app/javascript/gabsocial/actions/height_cache.js

14 lines
276 B
JavaScript
Raw Normal View History

2020-11-15 18:48:32 +00:00
export const HEIGHT_CACHE_SET = 'HEIGHT_CACHE_SET'
export const HEIGHT_CACHE_CLEAR = 'HEIGHT_CACHE_CLEAR'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const setHeight = (key, id, height) => ({
type: HEIGHT_CACHE_SET,
key,
id,
height,
})
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const clearHeight = () => ({
type: HEIGHT_CACHE_CLEAR,
})