Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
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,
|
|
};
|
|
}
|
|
|
|
export function clearHeight () {
|
|
return {
|
|
type: HEIGHT_CACHE_CLEAR,
|
|
};
|
|
}
|