(element: Element)
| 17 | * Reads the jsaction parser cache from the given DOM Element. |
| 18 | */ |
| 19 | export function get(element: Element): {[key: string]: string | undefined} | undefined { |
| 20 | return element[Property.JSACTION]; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Reads the jsaction parser cache for the given DOM element. If no cache is yet present, |