~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/tutorial/tutorial.js

  • Committer: drtomc
  • Date: 2008-03-06 05:03:16 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:663
console: start console lazily.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    var code = exercisebox.value;
38
38
 
39
39
    /* Dump the entire file to the console */
40
 
    console_enter_line(code, "block");
 
40
    var callback = function()
 
41
    {
 
42
        console_enter_line(code, "block");
 
43
    }
 
44
    start_server(callback)
41
45
    return;
42
46
}
43
47