File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ CKEditor 4 Changelog
5
5
6
6
Fixed Issues:
7
7
8
+ * [ #10666 ] ( http://dev.ckeditor.com/ticket/10666 ) : Fixed tools.isArray not working cross frame.
8
9
* [ #10910 ] ( http://dev.ckeditor.com/ticket/10910 ) : Fixed error thrown on Internet Explorer 9 in Compatibility Mode.
9
10
* [ #10868 ] ( http://dev.ckeditor.com/ticket/10868 ) : Prevent from Internet Explorer 8 crashing when applying a cite style.
10
11
* [ #10915 ] ( http://dev.ckeditor.com/ticket/10915 ) : CSS filter in Kama skin pull request.
Original file line number Diff line number Diff line change 223
223
* @returns {Boolean } `true` if the object is an Array, otherwise `false`.
224
224
*/
225
225
isArray : function ( object ) {
226
- return ( ! ! object && object instanceof Array ) ;
226
+ return Object . prototype . toString . call ( object ) == '[ object Array]' ;
227
227
} ,
228
228
229
229
/**
You can’t perform that action at this time.
0 commit comments