source: other-projects/FileTransfer-WebSocketPair/Themes/themebuilder/bin/phantomjs-1.9.2-windows/examples/countdown.js@ 31525

Last change on this file since 31525 was 31525, checked in by ak19, 7 years ago

Nathan provided more stuff: Themes folder contains Sencha's Themebuilder which generates GXT Themes. It includes the .theme and generated .jar files for the project theme.

File size: 212 bytes
Line 
1var t = 10,
2 interval = setInterval(function(){
3 if ( t > 0 ) {
4 console.log(t--);
5 } else {
6 console.log("BLAST OFF!");
7 phantom.exit();
8 }
9 }, 1000);
Note: See TracBrowser for help on using the repository browser.