Skip to content

Commit dc7ec41

Browse files
committed
fix(dispatcher): remove fdescribe
1 parent ee1b03d commit dc7ec41

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/dispatcher.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,13 +276,10 @@ export default class Dispatcher {
276276
const cursor = range.forceCursor()
277277

278278
if (cursor.isAtTextEnd()) {
279-
console.log('at end', event.target)
280279
self.notify('insert', this, 'after', cursor)
281280
} else if (cursor.isAtBeginning()) {
282-
console.log('at beginning', event.target)
283281
self.notify('insert', this, 'before', cursor)
284282
} else {
285-
console.log('in split', event.target)
286283
self.notify('split', this, cursor.before(), cursor.after(), cursor)
287284
}
288285
})

0 commit comments

Comments
 (0)