1 | | Since we have notifications we should no more use `alert()` function in out code and use warning notification instead. |
| 1 | Since we have notifications we can replace some usage of `alert()` method with warning notification. I found 3 potential places where we could change it: |
| 2 | |
| 3 | - https://github.com/ckeditor/ckeditor-dev/blob/major/plugins/clipboard/plugin.js#L640 |
| 4 | - https://github.com/ckeditor/ckeditor-dev/blob/major/plugins/pastefromword/filter/default.js#L1162 |
| 5 | - https://github.com/ckeditor/ckeditor-dev/blob/major/plugins/filebrowser/plugin.js#L342 |
| 6 | |
| 7 | Warning notification could be used if notification plugin is loaded and `alert` function otherwise. |