We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83ab18 commit b2d6f44Copy full SHA for b2d6f44
sources/net.sf.j2s.java.core/srcjs/js/j2sApplet.js
@@ -1002,6 +1002,8 @@ if (database == "_" && J2S._serverUrl.indexOf("//your.server.here/") >= 0) {
1002
}
1003
1004
J2S._isDirectCall = function(url) {
1005
+ if (url.indexOf("://localhost") >= 0)
1006
+ return true;
1007
for ( var key in J2S.db._DirectDatabaseCalls) {
1008
if (key.indexOf(".") >= 0 && url.indexOf(key) >= 0) {
1009
// hack because ebi is not returning ajax calls
0 commit comments