Skip to content

Commit 18c6781

Browse files
committed
Merge branch 't/12263'
2 parents 4cb5809 + 41a9935 commit 18c6781

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ CKEditor 4 Changelog
55

66
Fixed Issues:
77

8+
* [#12268](http://dev.ckeditor.com/ticket/12268): Cleanup of UI Color YUI styles. Thanks to [CasherWest](https://github.com/CasherWest)!
9+
* [#12263](http://dev.ckeditor.com/ticket/12263): Fixed: Paste from Word filter does not normalize semicolons style text properly. Thanks to [Alin Purcaru](https://github.com/mesmerizero)!
810
* [#10916](http://dev.ckeditor.com/ticket/10916): Fixed Magicline icon in RTL environments.
911
* [#11970](http://dev.ckeditor.com/ticket/11970): Fixed: CKEditor paste event not fired when pasting with SHIFT+INS in IE.
1012
* [#12111](http://dev.ckeditor.com/ticket/12111): Fixed: Linked image attributes are not read when opening the image dialog by doubleclick.
1113
* [#10030](http://dev.ckeditor.com/ticket/10030): [IE] Fixed: Prevented "Unspecified Error" thrown in various cases when IE8-9 does not allow access to `document.activeElement`.
1214
* [#12243](http://dev.ckeditor.com/ticket/12243): Fixed: Text formatting lost while pasting from Word. Thanks to [Alin Purcaru](https://github.com/mesmerizero)!
1315
* [#12273](http://dev.ckeditor.com/ticket/12273): Fixed: Applying block style in description list breaks it.
1416
* [#12281](http://dev.ckeditor.com/ticket/12281): Fixed: Minor syntax issue in CSS files.
15-
* [#12268](http://dev.ckeditor.com/ticket/12268): Cleanup of UI Color YUI styles. Thanks to [https://github.com/CasherWest](https://github.com/CasherWest)!
1617

1718
## CKEditor 4.4.3
1819

plugins/pastefromword/filter/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
styleText = ( isPrepend ? [ addingStyleText, styleText ] : [ styleText, addingStyleText ] ).join( ';' );
8888

89-
this.attributes.style = styleText.replace( /^;|;(?=;)/, '' );
89+
this.attributes.style = styleText.replace( /^;+|;(?=;)/g, '' );
9090
};
9191

9292
// Retrieve a style property value of the element.

tests/tickets/10285/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: pastefromword,font */
33

44
bender.editor = {

tests/tickets/11237/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: clipboard,pastefromword,ajax */
33

44
( function() {

tests/tickets/8103/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: clipboard,pastefromword,ajax */
33

44
( function() {

tests/tickets/9330/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: clipboard,pastefromword,ajax */
33

44
( function() {

tests/tickets/9456/1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: clipboard,pastefromword,format,ajax */
33

44
( function() {

tests/tickets/9456/2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* bender-tags: editor,unit */
1+
/* bender-tags: editor,unit,pastefromword */
22
/* bender-ckeditor-plugins: clipboard,pastefromword,format,ajax,basicstyles */
33

44
( function() {

0 commit comments

Comments
 (0)