This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ class MDCTextFieldFoundation extends MDCFoundation {
154
154
/**
155
155
* Activates the text field focus state.
156
156
*/
157
- activateFocus_ ( ) {
157
+ activateFocus ( ) {
158
158
const { BOTTOM_LINE_ACTIVE , FOCUSED , LABEL_SHAKE } = MDCTextFieldFoundation . cssClasses ;
159
159
this . isFocused_ = true ;
160
160
this . updateLabelFloat_ ( ) ;
@@ -235,7 +235,7 @@ class MDCTextFieldFoundation extends MDCFoundation {
235
235
/**
236
236
* Deactives the Text Field's focus state.
237
237
*/
238
- deactivateFocus_ ( ) {
238
+ deactivateFocus ( ) {
239
239
const { FOCUSED , LABEL_SHAKE } = MDCTextFieldFoundation . cssClasses ;
240
240
const input = this . getNativeInput_ ( ) ;
241
241
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const DESC_UNDEFINED = {
32
32
} ;
33
33
34
34
function setupHookTest ( ) {
35
- const { foundation, mockAdapter} = setupFoundationTest ( MDCTextfieldFoundation ) ;
35
+ const { foundation, mockAdapter} = setupFoundationTest ( MDCTextFieldFoundation ) ;
36
36
const nativeInput = bel `<input type="text">` ;
37
37
td . when ( mockAdapter . getNativeInput ( ) ) . thenReturn ( nativeInput ) ;
38
38
return { foundation, mockAdapter, nativeInput} ;
You can’t perform that action at this time.
0 commit comments