wix-incubator / react-native-zss-rich-text-editor

React Native rich text editor based on ZSSRichTextEditor
Other
841 stars 310 forks source link

action.unlink not working #140

Open TharaViswa opened 5 years ago

TharaViswa commented 5 years ago

I am trying to use unlink functionality. I made few changes

  1. In const.js unlink: 'unlink',

2.In RichTextEditor.js unlink(url, title) { this._sendAction(actions.unlink, {url, title}); }

  1. In RichTextToolbar.js case actions.unlink:

4.In WebviewMessageHandler.js case '${actions.unlink}': zss_editor.unlink(action.data.url, action.data.title); break; but still unlink not working for me. Can someone please help me?