Hello guys. Trying to replace style inside passage. Of course i set $images in StoryInit
passage contains this
<div id="start" style="margin-left: 200px;"
and i have a link to change it
<<link 'IMAGE ON/OFF'>>
<<if $images is false>>
<<set $images to true>>
<<set document.getElementById("start").style.margin-left="220px">>
<<refresh>>
<<elseif $images is true>>
<<set $images to false>>
<<set document.getElementById("start").style.margin-left="0px">>
<<refresh>>
<</if>>
<</link>>
As a result i have this
Error: <<set>>: bad evaluation: Invalid left-hand side in assignment.
But $images changing normally. I took an example from this answers, but it doesnt work. Please help