Skip to content

Commit

Permalink
Fixed lint warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Garry Yao committed Nov 19, 2012
1 parent 4bde874 commit a75b08c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions core/htmldataprocessor.js
Expand Up @@ -230,7 +230,7 @@
else if ( isBlockBoundary( next ) && previous && !isBlockBoundary( previous ) ) {
insertBefore( next, createFiller( isOutput ) );
}
}
};
}

// Determinate whether this node is potentially a bogus node.
Expand Down Expand Up @@ -605,7 +605,7 @@
}
}
// Disable form elements editing mode provided by some browers. (#5746)
for ( i in { input:1,textarea:1 } ) {
for ( var i in { input:1,textarea:1 } ) {
defaultDataFilterRules.elements[ i ] = protectReadOnly;
defaultHtmlFilterRules.elements[ i ] = unprotectReadyOnly;
}
Expand Down
2 changes: 1 addition & 1 deletion core/selection.js
Expand Up @@ -324,7 +324,7 @@
if ( evt.data.getTarget().is( 'html' ) ) {
// Limit the text selection mouse move inside of editable. (#9715)
outerDoc.on( 'mouseup', onSelectEnd );
html.on( 'mouseup', onSelectEnd )
html.on( 'mouseup', onSelectEnd );
}

});
Expand Down
2 changes: 2 additions & 0 deletions plugins/clipboard/plugin.js
Expand Up @@ -792,6 +792,8 @@
return false;
}
}

return true;
}

// Listens for some clipboard related keystrokes, so they get customized.
Expand Down
2 changes: 1 addition & 1 deletion plugins/colordialog/plugin.js
Expand Up @@ -56,7 +56,7 @@ CKEDITOR.plugins.colordialog = {
} );
} );
}
}
};


}
Expand Down
2 changes: 1 addition & 1 deletion plugins/list/plugin.js
Expand Up @@ -788,7 +788,7 @@
if ( !range.collapsed )
return;

var path = new CKEDITOR.dom.elementPath( range.startContainer );
path = new CKEDITOR.dom.elementPath( range.startContainer );
var isBackspace = key == 8;
var editable = editor.editable();
var walker = new CKEDITOR.dom.walker( range.clone() );
Expand Down
2 changes: 1 addition & 1 deletion plugins/magicline/plugin.js
Expand Up @@ -1400,7 +1400,7 @@
box.scroll = {
top: element.$.scrollTop,
left: element.$.scrollLeft
}
};
}

return extend({
Expand Down

0 comments on commit a75b08c

Please sign in to comment.