1234567891011121314151617181920212223242526 |
- (function () {
- var inBrowser = typeof amber !== "undefined" && typeof amber.load === "function";
- function init() {
- smalltalk.initialize();
-
- if (inBrowser && amber.smalltalkReady) {
- amber.smalltalkReady();
- }
- }
- if (inBrowser) {
-
-
-
-
- setTimeout(init, 0);
- } else {
-
-
-
-
- init();
- }
- })();
|