Script to use time out in dashboard
var id = setTimeout(function() {
sdk.setContext( 'timeout', '1' );
}, 30000);\
Above script will wait for 30 seconds and execute the script written inside of it i.e. setting the context
var id = setTimeout(function() {
sdk.setContext( 'timeout', '1' );
}, 30000);\
Above script will wait for 30 seconds and execute the script written inside of it i.e. setting the context