index.js 312 B

12345678910
  1. define(["require"], function (require) {
  2. return {
  3. popup: function () {
  4. window.open(require.toUrl('./index.html'), "Helios", "menubar=no, width=1000, height=600");
  5. },
  6. go: function () {
  7. window.location.href = require.toUrl('./index.html');
  8. }
  9. };
  10. });