1
0
Преглед на файлове

Helios is popupping itself, client only checks for its presence.

Herbert Vojčík преди 10 години
родител
ревизия
33a1410361
променени са 1 файла, в които са добавени 10 реда и са изтрити 0 реда
  1. 10 0
      index.js

+ 10 - 0
index.js

@@ -0,0 +1,10 @@
+define(["require"], function (require) {
+    return  {
+        popup: function () {
+            window.open(require.toUrl('./index.html'), "Helios", "menubar=no, width=1000, height=600");
+        },
+        go: function () {
+            window.location.href = require.toUrl('./index.html');
+        }
+    };
+});