Update index.vue

remove stubborn debugger statement
This commit is contained in:
Nick Palenchar 2019-08-25 17:16:13 -04:00 committed by GitHub
parent bfffdbc4d8
commit b46b2c1e8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -408,7 +408,6 @@
const oldSelectionStart = event.target.selectionStart;
const oldSelectionEnd = event.target.selectionEnd;
event.target.value = textBeforeCursor + '\xa0\xa0' + textAfterCursor;
debugger;
event.target.selectionStart = event.target.selectionEnd = oldSelectionStart + 2;
return false;
}