You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
314 B
18 lines
314 B
7 years ago
|
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,
|
||
|
};
|
||
|
};
|