Skip to content

Commit

Permalink
Merge branch 't/10666'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Oct 4, 2013
2 parents cec1019 + e916f37 commit 7cd0b1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -5,6 +5,7 @@ CKEditor 4 Changelog

Fixed Issues:

* [#10666](http://dev.ckeditor.com/ticket/10666): Fixed tools.isArray not working cross frame.
* [#10910](http://dev.ckeditor.com/ticket/10910): Fixed error thrown on Internet Explorer 9 in Compatibility Mode.
* [#10868](http://dev.ckeditor.com/ticket/10868): Prevent from Internet Explorer 8 crashing when applying a cite style.
* [#10915](http://dev.ckeditor.com/ticket/10915): CSS filter in Kama skin pull request.
Expand Down
2 changes: 1 addition & 1 deletion core/tools.js
Expand Up @@ -223,7 +223,7 @@
* @returns {Boolean} `true` if the object is an Array, otherwise `false`.
*/
isArray: function( object ) {
return ( !!object && object instanceof Array );
return Object.prototype.toString.call( object ) == '[object Array]';
},

/**
Expand Down

0 comments on commit 7cd0b1c

Please sign in to comment.