[fix] AW 2.5.2 in Google Chrome
ActiveWidgets 2.5.2 can work in the current version of the Google Chrome browser with the following workaround -
open /runtime/lib/aw.js file in the text editor and replace != operator with !== at line 27, char 7276 and char 7295.
if you are using the source files go to the /source/lib/system/control.js line 530 and change
to
The line numbers are for the licensed version.
The next release of ActiveWidgets will support Google Chrome.
open /runtime/lib/aw.js file in the text editor and replace != operator with !== at line 27, char 7276 and char 7295.
if you are using the source files go to the /source/lib/system/control.js line 530 and change
if (template.$owner != this && template != previous){
to
if (template.$owner !== this && template !== previous){
The line numbers are for the licensed version.
The next release of ActiveWidgets will support Google Chrome.
Alex (ActiveWidgets)
September 3,