Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
22 lines
No EOL
535 B
JavaScript
22 lines
No EOL
535 B
JavaScript
(function () {
|
|
|
|
BASE_URL = 'http://vkislichenko.github.io/hifi/scripts/stage/';
|
|
MANAGER_SEARCH_DIST = 10.0;
|
|
|
|
PERM_CAN_CREATE = true;
|
|
PERM_CAN_EDIT = true;
|
|
PERM_CAN_DELETE = true;
|
|
|
|
// load
|
|
Script.include(BASE_URL + "app/WebView.js");
|
|
Script.include(BASE_URL + "app/Entity.js");
|
|
Script.include(BASE_URL + "app/Entity/Identifier.js");
|
|
|
|
Script.include(BASE_URL + "app/Builder.js");
|
|
Script.include(BASE_URL + "app/Manager.js");
|
|
Script.include(BASE_URL + "app/Interface.js");
|
|
|
|
|
|
StageManager.searchForManagerEntity();
|
|
|
|
})(); |