We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e3a8d commit 44b21ceCopy full SHA for 44b21ce
sources/net.sf.j2s.java.core/src/mozilla.addon.js
@@ -4,7 +4,9 @@ function generateScriptCallback () {
4
return function () {
5
var s = this.readyState;
6
if (s == null || s == "loaded" || s == "complete") {
7
- window["j2s.lib"].onload ();
+ if (window["ClazzLoader"] != null) {
8
+ window["j2s.lib"].onload (this);
9
+ }
10
this.onreadystatechange = null;
11
this.onload = null;
12
}
0 commit comments