]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/OPEN_ILS_STAFF_CLIENT/test/test.js
another great renaming. package names have to be lowercase apparently
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / OPEN_ILS_STAFF_CLIENT / 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');