You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use webspellchecker in a web application running in a chrome extension, and we noticed we got a ton of errors from Chrome OS reported in trackjs from wsc.js in CKeditor. We have made a Chrome OS app that runs our exam system and then also CKEditor.
Checked latest version 4.11.3 and get the same error there.
I made a workaround in the minified code by doing
if("string"===typeof a.data &&(a=window.JSON.parse(a.data))&&a.id)
instead of
if((a=window.JSON.parse(a.data))&&a.id)
The reason is that a.data is an object in some events. Look at the screendump (I formatted the source):
The text was updated successfully, but these errors were encountered:
We use webspellchecker in a web application running in a chrome extension, and we noticed we got a ton of errors from Chrome OS reported in trackjs from wsc.js in CKeditor. We have made a Chrome OS app that runs our exam system and then also CKEditor.
Checked latest version 4.11.3 and get the same error there.
I made a workaround in the minified code by doing
if("string"===typeof a.data &&(a=window.JSON.parse(a.data))&&a.id)
instead of
if((a=window.JSON.parse(a.data))&&a.id)
The reason is that a.data is an object in some events. Look at the screendump (I formatted the source):
The text was updated successfully, but these errors were encountered: