Skip to content

Commit

Permalink
IE11 is still IE. Don't fool us.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Oct 2, 2013
1 parent fd1a76e commit f01e43b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/env.js
Expand Up @@ -28,7 +28,7 @@ if ( !CKEDITOR.env ) {
*
* @property {Boolean}
*/
ie: eval( '/*@cc_on!@*/false' ),
ie: ( agent.indexOf( 'trident/' ) > -1 ),
// Use eval to preserve conditional comment when compiling with Google Closure Compiler (#93).

/**
Expand Down Expand Up @@ -141,7 +141,7 @@ if ( !CKEDITOR.env ) {
*
* @property {Boolean}
*/
env.gecko = ( navigator.product == 'Gecko' && !env.webkit && !env.opera );
env.gecko = ( navigator.product == 'Gecko' && !env.webkit && !env.opera && !env.ie );

/**
* Indicates that CKEditor is running in Chrome.
Expand Down

0 comments on commit f01e43b

Please sign in to comment.