ソースを参照

Merge pull request #15 from babolivier/development

Allow hosting on specific path
Brendan Abolivier 7 年 前
コミット
f4dfe54942
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      front/form.js

+ 1
- 1
front/form.js ファイルの表示

@@ -85,7 +85,7 @@ function getServer() {
85 85
 			// This should be our script
86 86
 			if(url.match(/form\.js$/)) {
87 87
 				// Port has been found
88
-				return url.match(/^(https?:\/\/[^\/]+)/)[1];
88
+				return url.match(/^(https?:\/\/.+)\/form\.js/)[1];
89 89
 			}
90 90
 		}
91 91
 	}