| Index: chrome/browser/resources/hotword_audio_verification/flow.js
|
| diff --git a/chrome/browser/resources/hotword_audio_verification/flow.js b/chrome/browser/resources/hotword_audio_verification/flow.js
|
| index 9c0c4b016000bd674cc6e4203b8a2cd741e25817..405e59e12f6fb0dd6e31dc539347a2fe6d21e043 100644
|
| --- a/chrome/browser/resources/hotword_audio_verification/flow.js
|
| +++ b/chrome/browser/resources/hotword_audio_verification/flow.js
|
| @@ -550,7 +550,7 @@
|
| */
|
| Flow.prototype.showStep_ = function() {
|
| var currentStepId = this.currentFlow_[this.currentStepIndex_];
|
| - var currentStep = document.getElementById(currentStepId);
|
| + var currentStep = $(currentStepId);
|
| currentStep.hidden = false;
|
|
|
| cr.ui.setInitialFocus(currentStep);
|
| @@ -560,7 +560,7 @@
|
| previousStep = this.currentFlow_[this.currentStepIndex_ - 1];
|
|
|
| if (previousStep)
|
| - document.getElementById(previousStep).hidden = true;
|
| + $(previousStep).hidden = true;
|
|
|
| chrome.app.window.current().show();
|
| };
|
|
|