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 7b328b6 commit 71ef30bCopy full SHA for 71ef30b
sources/net.sf.j2s.java.core/srcjs/js/j2sApplet.js
@@ -840,8 +840,11 @@ if (!J2S._version)
840
841
J2S._isDirectCall = function(url) {
842
for ( var key in J2S.db._DirectDatabaseCalls) {
843
- if (key.indexOf(".") >= 0 && url.indexOf(key) >= 0)
844
- return true;
+ if (key.indexOf(".") >= 0 && url.indexOf(key) >= 0) {
+ // hack because ebi is not returning ajax calls
845
+ return url.indexOf(".ebi.ac.") < 0 || url.indexOf("dbfetch/dbfetch") < 0;
846
+
847
+ }
848
}
849
return false;
850
0 commit comments