Skip to content

Commit

Permalink
Merge branch 't/11809'
Browse files Browse the repository at this point in the history
  • Loading branch information
adelura committed May 7, 2014
2 parents 8c6d5e4 + f33a21b commit ca6b0cd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Expand Up @@ -4,8 +4,8 @@ CKEditor 4 Changelog
## CKEditor 4.4.1

Fixed Issues:

* [#11223](http://dev.ckeditor.com/ticket/11223): Fixeed issue when [Protected Source](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-protectedSource) was not working in the title element.
* [#11809](http://dev.ckeditor.com/ticket/11809): Set indentation to four spaces in [Code Snippet](http://ckeditor.com/addon/codesnippet) sample.
* [#11223](http://dev.ckeditor.com/ticket/11223): Fixed: issue when [Protected Source](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-protectedSource) was not working in the title element.
* [#11859](http://dev.ckeditor.com/ticket/11859): Fixed: Removed [Source Dialog](http://ckeditor.com/addon/sourcedialog) plugin from required in [Code Snippet](http://ckeditor.com/addon/codesnippet) sample.
* [#11754](http://dev.ckeditor.com/ticket/11754): Fixed: Infinite loop in Google Chrome when contents contains not closed attributes.
* [#11848](http://dev.ckeditor.com/ticket/11848): Fixed: [`editor.insertElement()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertElement) throwing an exception in IE, when there was no selection in editor.
Expand Down
4 changes: 4 additions & 0 deletions contents.css
Expand Up @@ -93,6 +93,10 @@ pre
{
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE7 */
-moz-tab-size: 4;
-o-tab-size: 4;
-webkit-tab-size: 4;
tab-size: 4;
}

.marker
Expand Down
6 changes: 3 additions & 3 deletions plugins/codesnippet/samples/codesnippet.html
Expand Up @@ -44,9 +44,9 @@ <h1 class="samples">
<p>
Select theme: <select id="select"></select>
</p>
<p>
The CKEditor instance below was created by using the following configuration settings:
</p>
<p>
The CKEditor instance below was created by using the following configuration settings:
</p>

<pre class="samples" id="sampleConfig">
CKEDITOR.replace( 'editor1', {
Expand Down
12 changes: 8 additions & 4 deletions samples/sample.css
Expand Up @@ -18,6 +18,14 @@ input, textarea, select, option, optgroup, button, td, th
font-size: 100%;
}

pre
{
-moz-tab-size: 4;
-o-tab-size: 4;
-webkit-tab-size: 4;
tab-size: 4;
}

pre, code, kbd, samp, tt
{
font-family: monospace,monospace;
Expand Down Expand Up @@ -165,10 +173,6 @@ pre.samples
padding: 0.25em;
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE7 */
-moz-tab-size: 4;
-o-tab-size: 4;
-webkit-tab-size: 4;
tab-size: 4;
}

#footer
Expand Down

0 comments on commit ca6b0cd

Please sign in to comment.