Explorar el Código

Merge pull request #15 from babolivier/development

Allow hosting on specific path
Brendan Abolivier hace 7 años
padre
commit
f4dfe54942
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      front/form.js

+ 1
- 1
front/form.js Ver fichero

@@ -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
 	}