Skip to content

Commit

Permalink
fix: removed a debugger statement left in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed Apr 11, 2021
1 parent 538d85e commit 966e3f2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/textfield/Textfield.svelte
Expand Up @@ -353,10 +353,7 @@
removeInputAttr: (name) => {
input.removeAttr(name);
},
isFocused: () => {
if (!input) debugger;
return document.activeElement === input.getElement();
},
isFocused: () => document.activeElement === input.getElement(),
registerInputInteractionHandler: (evtType, handler) => {
input.getElement().addEventListener(evtType, handler, applyPassive());
},
Expand Down

0 comments on commit 966e3f2

Please sign in to comment.