]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/evergreen/test/test.js
start of staff client 3
[working/Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / evergreen / test / test.js
1 dump('entering test/test.js\n');
2
3 if (typeof test == 'undefined') var test = {};
4 test.test = {};
5
6 test.test.EXPORT_OK     = [ 'hello_world' ];
7 test.test.EXPORT_TAGS   = { ':all' : test.test.EXPORT_OK };
8
9 test.test.hello_world = function () {
10         alert('Hello World');
11 }
12
13 dump('exiting test/test.js\n');