You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
madprops edited this page Aug 2, 2017
·
1 revision
var something;
function create_something()
{
var s = "";
s += "something<br>";
s += "other thing<br>";
s += "another thing";
something = s;
}
function show_something()
{
if(something === undefined)
{
create_something();
}
msg.show(something);
}