helpers.js 359 B

12345678
  1. define("amber/helpers", ["amber_vm/smalltalk", "require"], function (smalltalk, require) {
  2. return {
  3. popupHelios: function () {
  4. window.open(require.toUrl('amber_html/helios.html'), "Helios", "menubar=no, status=no, scrollbars=no, menubar=no, width=1000, height=600");
  5. },
  6. get smalltalk() { return smalltalk; }
  7. };
  8. });