(element: Element, actionMap: {[key: string]: string | undefined})
| 34 | * Writes the jsaction parser cache to the given DOM Element. |
| 35 | */ |
| 36 | export function set(element: Element, actionMap: {[key: string]: string | undefined}) { |
| 37 | element[Property.JSACTION] = actionMap; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Looks up the parsed action map from the source jsaction attribute value. |