Lisäosan JavaScript-Java Bridge versiohistoria - 2 versiota
JavaScript-Java Bridge tekijä Advanced Machine Controls
Lisäosan JavaScript-Java Bridge versiohistoria - 2 versiota
Ole varovainen vanhojen versioiden kanssa! Ne näytetään vain testauksen ja viittausten vuoksi.On suositeltavaa käyttää aina lisäosan uusinta versiota.
Uusin versio
Versio 1.81
Julkaistu 14. loka 2020 - 22,41 ktYhteensopivuus: firefox 58.0 ja uudemmatFor an unknown reason, the Preferences window was not appearing on Version 1.8.Lähdekoodi julkaistu lisenssillä DevWheels V1
Vanhemmat versiot
Versio 1.8
Julkaistu 15. kesä 2020 - 22,32 ktYhteensopivuus: firefox 58.0 ja uudemmatThe jsjbridge.jar Version 1.8 Java library:
- Embed JSON code to remove the external json.jar dependency.
- Retry waits for request replies when the thread is interrupted.
Trigger a JavaScriptwindow.jsjbridgeActive
event when the JSJBridge code has been loaded andgetElementById
calls return a Java proxy rather than a normal HTML element.
Code can now be like
addEventListener('jsjbridgeActive', function() {
var myHelper = document.getElementById('myApplet');
myHelper.addEventListener('initialized', function() { ... });
});
instead of
var myHelper = document.getElementById('myApplet');
myHelper.addEventListener('initialized', function() {
myHelper = document.getElementById('myApplet');
...
});
Disable the ability of Java to calleval
on a JavaScript string. Mozilla believes this original feature ofJSObject
to be a security risk. It is still present on the Chrome/Chromium extension.Lähdekoodi julkaistu lisenssillä DevWheels V1
- Embed JSON code to remove the external json.jar dependency.