Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

There is a temporary workaround available if you need to listen to Add or remove word actions perfromed performed by end users.

Note

This is a temporary solution which will be later replaced with public callback functions.


Code Block
languagejs
themeEmacs
window.WEBSPELLCHECKER_CONFIG = {
    autoSearch: true,
    ....,
    onLoad: function(instance) {
        instance.subscribe('addWordToUserDictionary', function(data) {
            // Get the added `word` from `data.word` field
        });

        instance.subscribe('deleteWordFromUserDictionary', function(data) {
            // Get the deleted `word` from `data.word` field
        });
    }
};

...