| Index: chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
|
| diff --git a/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js b/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
|
| index 202c494275b0e8510cb317cfc68b05b2ec4dadf6..cda4415e29717dfb2c7e57eb460e4a82afb04895 100644
|
| --- a/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
|
| +++ b/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
|
| @@ -18,7 +18,7 @@ login.createScreen('WrongHWIDScreen', 'wrong-hwid', function() {
|
|
|
| /**
|
| * Updates state of login header so that necessary buttons are displayed.
|
| - **/
|
| + */
|
| onBeforeShow: function(data) {
|
| $('login-header-bar').signinUIState = SIGNIN_UI_STATE.WRONG_HWID_WARNING;
|
| },
|
| @@ -27,14 +27,11 @@ login.createScreen('WrongHWIDScreen', 'wrong-hwid', function() {
|
| * Updates localized content of the screen that is not updated via template.
|
| */
|
| updateLocalizedContent: function() {
|
| - $('wrong-hwid-message-content').innerHTML =
|
| - '<p>' +
|
| - loadTimeData.getStringF('wrongHWIDMessageFirstPart',
|
| - '<strong>', '</strong>') +
|
| - '</p><p>' +
|
| - loadTimeData.getString('wrongHWIDMessageSecondPart') +
|
| + $('wrong-hwid-message-content').innerHTML = '<p>' +
|
| + loadTimeData.getStringF(
|
| + 'wrongHWIDMessageFirstPart', '<strong>', '</strong>') +
|
| + '</p><p>' + loadTimeData.getString('wrongHWIDMessageSecondPart') +
|
| '</p>';
|
| }
|
| };
|
| });
|
| -
|
|
|