| Index: chrome/browser/resources/settings/about_page/update_warning_dialog.js
|
| diff --git a/chrome/browser/resources/settings/about_page/update_warning_dialog.js b/chrome/browser/resources/settings/about_page/update_warning_dialog.js
|
| index d938891935132b85b0f33deacc4136046bdfda51..4e62fc889008230aa923bc3f90febed0049b47e9 100644
|
| --- a/chrome/browser/resources/settings/about_page/update_warning_dialog.js
|
| +++ b/chrome/browser/resources/settings/about_page/update_warning_dialog.js
|
| @@ -40,16 +40,16 @@ Polymer({
|
|
|
| /** @private */
|
| onContinueTap_: function() {
|
| - this.browserProxy_.requestUpdateOverCellular(this.updateInfo.version,
|
| - this.updateInfo.size);
|
| + this.browserProxy_.requestUpdateOverCellular(
|
| + this.updateInfo.version, this.updateInfo.size);
|
| this.$.dialog.close();
|
| },
|
|
|
| /** @private */
|
| updateInfoChanged_: function() {
|
| - this.$$("#update-warning-message").innerHTML =
|
| - this.i18n("aboutUpdateWarningMessage",
|
| - // Convert bytes to megabytes
|
| - Math.floor(Number(this.updateInfo.size) / (1024 * 1024)));
|
| + this.$$('#update-warning-message').innerHTML = this.i18n(
|
| + 'aboutUpdateWarningMessage',
|
| + // Convert bytes to megabytes
|
| + Math.floor(Number(this.updateInfo.size) / (1024 * 1024)));
|
| },
|
| });
|
|
|