I don't like it changing files this way, but it's basically what
c49213f0ea and a few others did.
		
	
		
			
				
	
	
		
			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,
 | 
						|
  };
 | 
						|
}
 |