I'm trying to use story.show. I'm pretty sure it was working, but now in the story I'm mainly working on, it gives me this error:
Uncaught TypeError: Cannot read property 'length' of undefined (chrome-extension://jbeclgngiacjdjjokiegbkjcpibcdcic/index.html#!/stories/becd00a4-2a59-4420-a4c5-42b8a96b8775/test/3d1dec10-6ca2-4d3a-bafb-cc9f21570a19: 171)
The error seems to be only from story.show, not anything else (I've used trial and error to establish this). If I use a plain link to go to the other passage, it's fine; if I use story.show, I get the error.
I created a dummy story to test, and there it isn't working either. The whole story is two passages, one contains
```
<%
story.show('other');
%>
```
and the other just says "moved to other". If I add a print statement to the start passage it shows the printed message, but it doesn't show "other" passage or give any error.
Apologies if I made some dumb mistake, but I'm completely stumped.