Zgodovina različic JavaScript-Java Bridge – 2 različici
JavaScript-Java Bridge — Advanced Machine Controls
Zgodovina različic JavaScript-Java Bridge – 2 različici
Previdno s starimi različicami! Spodnje različice so na razpolago za namene preskušanja in sklicevanja.Vedno uporabljajte najnovejšo različico dodatka.
Najnovejša različica
Različica 1.81
Izdano 14. okt. 2020 – 22,41 KBDeluje z firefox 58.0 in novejšiFor an unknown reason, the Preferences window was not appearing on Version 1.8.Izvorna koda objavljena pod DevWheels V1
Starejše različice
Različica 1.8
Izdano 15. jun. 2020 – 22,32 KBDeluje z firefox 58.0 in novejšiThe 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.jsjbridgeActiveevent when the JSJBridge code has been loaded andgetElementByIdcalls 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 callevalon a JavaScript string. Mozilla believes this original feature ofJSObjectto be a security risk. It is still present on the Chrome/Chromium extension.Izvorna koda objavljena pod DevWheels V1
- Embed JSON code to remove the external json.jar dependency.