I have the following error :
Error: uncaught OPA exception {OpaRPC_Server: {timeout: {client: {client: $"j98soqx7hbavgq2scg915j7mlkctdeop"$; page: $1
042254815$}; fun_id: $"_v0_get_value_stdlib.core.xhtml"$}}}
with the simple code below :
function start()
{
content = <textarea style="width:30%;" rows=1 id=#text > text </textarea> <+>
<div id=#copy></div>
Scheduler.timer(3000, function() {#copy =+ Dom.get_value(#text)})
content
}
Server.start(
Server.http,
{ page:start,
title:"bug timer"
}
)
The error appears when I close the tab running the application. It seems that the timer continues to work event though the tab has been close.
How can I stop it ?
Thanks,
kayhman