Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

учитывать пробелы в теге code #3

Merged
merged 1 commit into from
Aug 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dist/ckeditor-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if ( !window.CKEDITOR ) {
// The production implementation contains a fixed timestamp, unique
// for each release and generated by the releaser.
// (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122)
timestamp: 'G5R9',
timestamp: 'G68C',

/**
* Contains the CKEditor version number.
Expand All @@ -64,7 +64,7 @@ if ( !window.CKEDITOR ) {
*
* alert( CKEDITOR.revision ); // e.g. '3975'
*/
revision: 'f77bc45',
revision: 'c8823b5',

/**
* A 3-digit random integer, valid for the entire life of the CKEDITOR object.
Expand Down Expand Up @@ -60323,7 +60323,7 @@ CKEDITOR.dialog.add( 'anchor', function( editor ) {
config.browserContextMenuOnCtrl = true;
config.customConfig = '';
config.disableNativeSpellChecker = false;
config.disallowedContent = '*{position,z-index}';
config.disallowedContent = '*{position,z-index}; pre code{white-space}';
config.docType = '<!DOCTYPE html>';
config.enterMode = CKEDITOR.ENTER_DIV;
config.pasteFilter = allowFilter;
Expand Down
4 changes: 2 additions & 2 deletions dist/ckeditor-full.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/ckeditor/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if ( !window.CKEDITOR ) {
// The production implementation contains a fixed timestamp, unique
// for each release and generated by the releaser.
// (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122)
timestamp: 'G5R9',
timestamp: 'G68C',

/**
* Contains the CKEditor version number.
Expand All @@ -62,7 +62,7 @@ if ( !window.CKEDITOR ) {
*
* alert( CKEDITOR.revision ); // e.g. '3975'
*/
revision: 'f77bc45',
revision: 'c8823b5',

/**
* A 3-digit random integer, valid for the entire life of the CKEDITOR object.
Expand Down
3 changes: 3 additions & 0 deletions dist/ckeditor/skins/clean/contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@
.cke_editable pre {
white-space: pre-line;
}
.cke_editable code {
white-space: pre-wrap;
}
.cke_editable a:link {
cursor: pointer;
color: #00e;
Expand Down
2 changes: 1 addition & 1 deletion dist/ckeditor/skins/clean/contents.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading