Skip to content

Commit

Permalink
CKEditor 4.5.9 changelog and API docs corrected.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaTomanek committed May 12, 2016
1 parent ce71206 commit a3a5b09
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ CKEditor 4 Changelog

Fixed Issues:

* [#10685](http://dev.ckeditor.com/ticket/10685): Fixed: Unreadable toolbar icons after update to new version. Fixed with `6c9189f4` in `ckeditor-dev` and `6c9189f4` in `ckeditor-presets`.
* [#10685](http://dev.ckeditor.com/ticket/10685): Fixed: Unreadable toolbar icons after updating to the new editor version. Fixed with [6876179](https://github.com/ckeditor/ckeditor-dev/commit/6876179db4ee97e786b07b8fd72e6b4120732185) in [ckeditor-dev](https://github.com/ckeditor/ckeditor-dev) and [6c9189f4](https://github.com/ckeditor/ckeditor-presets/commit/6c9189f46392d2c126854fe8889b820b8c76d291) in [ckeditor-presets](https://github.com/ckeditor/ckeditor-presets).
* [#14573](https://dev.ckeditor.com/ticket/14573): Fixed: Missing [Widget](http://ckeditor.com/addon/widget) drag handler CSS when there are multiple editor instances.
* [#14620](https://dev.ckeditor.com/ticket/14620): Fixed: Setting both the `min-height` style for the `<body>` element and the `height` style for the `<html>` element breaks [Auto Grow](http://ckeditor.com/addon/autogrow) plugin.
* [#14538](http://dev.ckeditor.com/ticket/14538): Fixed: Keyboard focus goes into embedded iframe element.
* [#14602](http://dev.ckeditor.com/ticket/14602): Fixed: [dom.element.removeAttribute()](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-removeAttribute) method does not remove all attributes if no parameter is given.
* [#8679](http://dev.ckeditor.com/ticket/8679): Fixed: Better focus indication and ability to style selected color in the color picker dialog.
* [#14312](http://dev.ckeditor.com/ticket/14312): Fixed: [IE] Artifact is visible after pasting of any text.
* [#11697](http://dev.ckeditor.com/ticket/11697): Fixed: It is possible to replace content with wrong letter case.
* [#13886](http://dev.ckeditor.com/ticket/13886): Fixed: Invalid handling of [`CKEDITOR.style`](http://docs.ckeditor.com/#!/api/CKEDITOR.style) instance with `styles` property by [`CKEDITOR.filter`](http://docs.ckeditor.com/#!/api/CKEDITOR.filter).
* [#14620](https://dev.ckeditor.com/ticket/14620): Fixed: Setting both the `min-height` style for the `<body>` element and the `height` style for the `<html>` element breaks the [Auto Grow](http://ckeditor.com/addon/autogrow) plugin.
* [#14538](http://dev.ckeditor.com/ticket/14538): Fixed: Keyboard focus goes into an embedded `<iframe>` element.
* [#14602](http://dev.ckeditor.com/ticket/14602): Fixed: The [`dom.element.removeAttribute()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-removeAttribute) method does not remove all attributes if no parameter is given.
* [#8679](http://dev.ckeditor.com/ticket/8679): Fixed: Better focus indication and ability to style the selected color in the [color picker dialog](http://ckeditor.com/addon/colordialog).
* [#11697](http://dev.ckeditor.com/ticket/11697): Fixed: Content is replaced ignoring the letter case setting in the [Find and Replace](http://ckeditor.com/addon/find) dialog window.
* [#13886](http://dev.ckeditor.com/ticket/13886): Fixed: Invalid handling of the [`CKEDITOR.style`](http://docs.ckeditor.com/#!/api/CKEDITOR.style) instance with the `styles` property by [`CKEDITOR.filter`](http://docs.ckeditor.com/#!/api/CKEDITOR.filter).
* [#14535](http://dev.ckeditor.com/ticket/14535): Fixed: CSS syntax corrections. Thanks to [mdjdenormandie](https://github.com/mdjdenormandie)!
* [#14312](http://dev.ckeditor.com/ticket/14312): [IE] Fixed: Artifact is visible after pasting any text.

## CKEditor 4.5.8

Expand Down
6 changes: 3 additions & 3 deletions core/dom/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -611,10 +611,10 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
} )(),

/**
* Get values of all element's attributes.
* Gets the values of all element attributes.
*
* @param {Array} exclude Names of attributes to be excluded from the returned object.
* @return {Object} Object containing all element's attributes with their values.
* @param {Array} exclude The names of attributes to be excluded from the returned object.
* @return {Object} An object containing all element attributes with their values.
*/
getAttributes: function( exclude ) {
var attributes = {},
Expand Down
2 changes: 1 addition & 1 deletion plugins/embedbase/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Sends a request using the JSONP technique.
*
* @param {CKEDITOR.template} urlTemplate The template of the URL to be requested. All properties
* passed in `urlParams` can be used, plus a `{callback}`, which represent a JSONP callback, must be defined.
* passed in `urlParams` can be used, plus a `{callback}`, which represents a JSONP callback, must be defined.
* @param {Object} urlParams Parameters to be passed to the `urlTemplate`.
* @param {Function} callback
* @param {Function} [errorCallback]
Expand Down

0 comments on commit a3a5b09

Please sign in to comment.