<div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im"><br><br></div>
Hmmm - how to safely push a page reload, my attempt with:<br>
<br>
aContext := self requestContext.<br>
anActionUrl := aContext request uri.<br>
^aJScript goto: anActionUrl withoutQuery<br>
<br>
or<br>
<br>
^aJScript refresh<br>
<br>
both cause my image to hang! (even Cmd-. doesn&#39;t work).<div><div></div><div class="h5"><br></div></div></blockquote><div><br></div><div>if it&#39;s javascript you&#39;re using to force a reload, you can try:</div><div>
<br></div>^ &#39;window.location.reload();&#39;<div><br></div><div>or more brute force:</div><div><br></div><div>^ &#39;window.location.href= &quot;&#39;, self requestContext request uri withoutQuery greaseString, &#39;&quot;&#39;    [untested]</div>
<div><br></div><div><br></div><div>- I don&#39;t know if there are any Smalltalk javascript mappings for these.</div><div><br></div><div>Nick</div><div><br></div><div><a href="https://developer.mozilla.org/en/DOM/window.location">https://developer.mozilla.org/en/DOM/window.location</a></div>
</div></div>