Skip to content
Snippets Groups Projects
Commit 13b77aac authored by rhenck's avatar rhenck
Browse files

[editor] Remove console outputs

parent b349abee
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,6 @@ export class AppComponent implements OnInit { ...@@ -33,7 +33,6 @@ export class AppComponent implements OnInit {
}); });
this.veronaApiService.voeGetDefinitionRequest this.veronaApiService.voeGetDefinitionRequest
.subscribe(() => { .subscribe(() => {
console.log('unit:', this.unitService.getUnitAsJSON());
this.veronaApiService.sendVoeDefinitionChangedNotification(this.unitService.getUnitAsJSON()); this.veronaApiService.sendVoeDefinitionChangedNotification(this.unitService.getUnitAsJSON());
}); });
......
...@@ -16,7 +16,6 @@ export const customParagraph = Paragraph.extend({ ...@@ -16,7 +16,6 @@ export const customParagraph = Paragraph.extend({
margin: { margin: {
default: 10, default: 10,
parseHTML: element => { parseHTML: element => {
console.log('ggg', element.style.marginBottom);
return Number(element.style.marginBottom.slice(0, -2)); return Number(element.style.marginBottom.slice(0, -2));
}, },
renderHTML: attributes => ({ renderHTML: attributes => ({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment