summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Fsm_1/main.js
blob: 56a53ac484b30937fd0673dddcf383891e5b7e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
qx.core.Init.getInstance().defineMain(function()
{
  // Initialize the finite state machine
  fsm = initFsm();

  // Initialize the GUI
  initGui(fsm);

  // Start the finite state machine
  fsm.start();
});