Lines Matching refs:app
69 app.alert("hello world");
72 app.alert("goodbye world");
74 var timer = app.setTimeOut("fireTimeOut()", 3000);
75 var interval = app.setInterval("fireInterval()", 1000);
77 app.clearTimeOut(timer);
78 app.clearInterval(interval);
80 app.clearTimeOut(timer);
81 app.clearInterval(interval);
83 var timer = app.setTimeOut("fireTimeOut()", 3000);
84 var interval = app.setInterval("fireInterval()", 1000);
85 app.clearTimeOut(interval);
86 app.clearInterval(timer);
88 app.clearTimeOut({"size": 42});
89 app.clearInterval({"size": 42});
91 app.alert("done");