initial commit
[emacs-init.git] / nxhtml / related / rhino.js
1 // Where you store your files
2 var project_folder = 'file:///c:/emacs/p/091105/EmacsW32/nxhtml/related/';
3 // Browser environment wrapper over Rhino
4 load(project_folder + 'env.js');
5 // For DOM constructing
6 window.location = project_folder + 'blank.html';
7 var my_script = arguments[0];
8 // If DOM ready
9 window.onload = function(){
10     // Avoid recursive inclusion
11     if ("rhino_flymake.js" != my_script) {
12         load(my_script);
13     }
14 }