Explorar el Código

Small refactor.

Maciej Gołaszewski hace 6 años
padre
commit
47b79ec9a6
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      packages/ckeditor5-indent/src/indentblockcommand.js

+ 0 - 1
packages/ckeditor5-indent/src/indentblockcommand.js

@@ -75,7 +75,6 @@ export default class IndentBlockCommand extends Command {
 
 	_getIndentOffset( currentIndent ) {
 		const currentOffset = parseFloat( currentIndent || 0 );
-
 		const offsetToSet = currentOffset + this.direction * this.offset;
 
 		return offsetToSet && offsetToSet > 0 ? offsetToSet + this.unit : undefined;