0 votes
by (8.9k points)

I have some images (character avatars) in my StoryCaption passage.  I'd like to add a "Reload" link that reloads StoryCaption only (in the event that an image doesn't load correctly).  Is there an easy way to do that?

I tried putting in a <<link "Reload" `passage()`>><</link>> in StoryCaption, but that reloads the whole passage, not just StoryCaption.

 

1 Answer

+1 vote
by (68.6k points)
selected by
 
Best answer

You could do something like the following:

<<link "Reload">>
	<<replace "#story-caption">><<include "StoryCaption">><</replace>>
<</link>>

 

by (8.9k points)
Works perfectly, thanks!
...