היסטוריית גרסאות עבור JavaScript-Java Bridge - 2 גרסאות
JavaScript-Java Bridge Advanced Machine Controls מאת
היסטוריית גרסאות עבור JavaScript-Java Bridge - 2 גרסאות
יש להיזהר עם גרסאות ישנות! גרסאות אלה מוצגות למטרות בדיקה ועיון.מומלץ תמיד להשתמש בגרסה העדכנית של תוספת.
הגרסה העדכנית ביותר
גרסה 1.81
תאריך שחרור: 14 אוק׳ 2020 - 22.41 ק״בעובד עם firefox 58.0 ומעלהFor an unknown reason, the Preferences window was not appearing on Version 1.8.קוד המקור משוחרר תחת DevWheels V1
גרסאות ישנות יותר
גרסה 1.8
תאריך שחרור: 15 יוני 2020 - 22.32 ק״בעובד עם firefox 58.0 ומעלהThe 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.קוד המקור משוחרר תחת DevWheels V1
- Embed JSON code to remove the external json.jar dependency.