Skip to content

Commit

Permalink
Mark IE11 as unsupported environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Comandeer committed Feb 12, 2020
1 parent afa0929 commit bee39bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/pastefromlibreoffice/plugin.js
Expand Up @@ -15,9 +15,9 @@

isSupportedEnvironment: function() {
var isSafari = CKEDITOR.env.webkit && !CKEDITOR.env.chrome,
isOldIE = CKEDITOR.env.ie && CKEDITOR.env.version < 11;
isIE = CKEDITOR.env.ie && CKEDITOR.env.version <= 11;

return !isSafari && !isOldIE;
return !isSafari && !isIE;
},

init: function( editor ) {
Expand Down

0 comments on commit bee39bb

Please sign in to comment.