« Back to the index

Core Attributes example

The Core has 2 basic attributes:
- The version.
- The running flag.

Let's show the attributes:
function test1() { WA.get('#test1').text( 'Version of WAJAF: ' + WA.version + '\n' ); WA.get('#test1').append( 'Is WAJAF already running? ' + (WA.running?'Yes':'No, wait some milliseconds then try again' + '\n' ); }
Show the result
« Back to the index