Skip to content

Commit

Permalink
Merge pull request #6 from betula/master
Browse files Browse the repository at this point in the history
Fix autogrow plugin
  • Loading branch information
3y3 authored Jul 12, 2017
2 parents 1d80368 + 783a505 commit c4b89dd
Show file tree
Hide file tree
Showing 6 changed files with 256 additions and 101 deletions.
10 changes: 5 additions & 5 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: 'H6CB',
timestamp: 'H6CD',

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

/**
* A 3-digit random integer, valid for the entire life of the CKEDITOR object.
Expand Down Expand Up @@ -30868,14 +30868,14 @@ CKEDITOR.skin.chameleon = ( function() {
attach();

function attach() {
var element = editor.ui.space( 'contents' ).$.querySelector( 'textarea' );
element.removeEventListener( 'input', inputListener );

if ( editor.mode !== 'source' ) {
return;
}

var element = editor.ui.space( 'contents' ).$.querySelector( 'textarea' );
element.removeEventListener( 'input', inputListener );
element.addEventListener( 'input', inputListener );

resize( element );
}

Expand Down
4 changes: 2 additions & 2 deletions dist/ckeditor-full.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 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: 'H6CB',
timestamp: 'H6CD',

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

/**
* A 3-digit random integer, valid for the entire life of the CKEDITOR object.
Expand Down Expand Up @@ -30866,14 +30866,14 @@ CKEDITOR.skin.chameleon = ( function() {
attach();

function attach() {
var element = editor.ui.space( 'contents' ).$.querySelector( 'textarea' );
element.removeEventListener( 'input', inputListener );

if ( editor.mode !== 'source' ) {
return;
}

var element = editor.ui.space( 'contents' ).$.querySelector( 'textarea' );
element.removeEventListener( 'input', inputListener );
element.addEventListener( 'input', inputListener );

resize( element );
}

Expand Down
Loading

0 comments on commit c4b89dd

Please sign in to comment.