(actions, actionIndex, playback)
| 68 | } |
| 69 | |
| 70 | function saveRunningContext(actions, actionIndex, playback) { |
| 71 | localStorage.setItem('vstRunContext', JSON.stringify({ |
| 72 | actions: actions, |
| 73 | currentActionIndex: actionIndex, |
| 74 | currentActionContext: playback.getContext() |
| 75 | })); |
| 76 | } |
| 77 | |
| 78 | window.__VRT_RUN_ACTIONS__ = async function (actions, restoredActionIndex, restoredActionContext) { |
| 79 | // Actions can only bu runned once. |
no test coverage detected
searching dependent graphs…