| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | 
							- define("amber/helpers", ["amber/boot", "require"], function (boot, require) {
 
-     var globals = boot.globals,
 
-         exports = Object.create(globals), // backward compatibility, use {} later
 
-         vm = boot.vm,
 
-         nil = boot.vm;
 
-     // API
 
-     exports.popupHelios = function () {
 
-         require(['helios/index'], function (helios) {
 
-             helios.popup();
 
-         }, function (err) {
 
-             window.alert("Error loading helios.\nIf not present, you can install it with 'bower install helios --save-dev'.\nThe error follows:\n" + err);
 
-         });
 
-     };
 
-     Object.defineProperty(exports, "vm", {
 
-         value: vm,
 
-         enumerable: true, configurable: true, writable: false
 
-     });
 
-     Object.defineProperty(exports, "globals", {
 
-         value: globals,
 
-         enumerable: true, configurable: true, writable: false
 
-     });
 
-     Object.defineProperty(exports, "nil", {
 
-         value: nil,
 
-         enumerable: true, configurable: true, writable: false
 
-     });
 
-     function mixinToSettings(source) {
 
-         var settings = globals.SmalltalkSettings;
 
-         Object.keys(source).forEach(function (key) {
 
-             settings[key] = source[key];
 
-         });
 
-     }
 
-     function settingsInLocalStorage() {
 
-         var global = new Function('return this')(),
 
-             storage = 'localStorage' in global && global.localStorage;
 
-         if (storage) {
 
-             var fromStorage;
 
-             try {
 
-                 fromStorage = JSON.parse(storage.getItem('amber.SmalltalkSettings'));
 
-             } catch (ex) {
 
-                 // pass
 
-             }
 
-             mixinToSettings(fromStorage || {});
 
-             if (typeof window !== "undefined") {
 
-                 requirejs(['jquery'], function ($) {
 
-                     $(window).on('beforeunload', function () {
 
-                         storage.setItem('amber.SmalltalkSettings', JSON.stringify(globals.SmalltalkSettings));
 
-                     });
 
-                 });
 
-             }
 
-         }
 
-     }
 
-     exports.initialize = function (options) {
 
-         globals.SmalltalkSettings['transport.defaultAmdNamespace'] = vm.defaultAmdNamespace;
 
-         settingsInLocalStorage();
 
-         if (exports.defaultAmdNamespace) {
 
-             console.warn("`smalltalk.defaultAmdNamespace = 'namespace';` is deprecated. Please use `smalltalk.initialize({'transport.defaultAmdNamespace': 'namespace'});` instead.");
 
-             globals.SmalltalkSettings['transport.defaultAmdNamespace'] = globals.SmalltalkSettings['transport.defaultAmdNamespace'] || exports.defaultAmdNamespace;
 
-         }
 
-         mixinToSettings(options || {});
 
-         console.warn("smalltalk.ClassName is deprecated. Please use smalltalk.globals.ClassName instead.");
 
-         return vm.initialize();
 
-     };
 
-     // Backward compatibility, deprecated
 
-     Object.defineProperty(exports, "smalltalk", {
 
-         value: vm,
 
-         enumerable: true, configurable: true, writable: false
 
-     });
 
-     exports.defaultAmdNamespace = null;
 
-     // Exports
 
-     return  exports;
 
- });
 
 
  |