| Index: ui/webui/resources/js/util.js
|
| diff --git a/ui/webui/resources/js/util.js b/ui/webui/resources/js/util.js
|
| index 77d7835a8e7ea38eb4a3b6a62e1c56e2ba88c494..cdc8ed73c645259f519528ac03688abfbd8b57df 100644
|
| --- a/ui/webui/resources/js/util.js
|
| +++ b/ui/webui/resources/js/util.js
|
| @@ -40,7 +40,9 @@ function announceAccessibleMessage(msg) {
|
| element.style.height = '0px';
|
| element.innerText = msg;
|
| document.body.appendChild(element);
|
| - window.setTimeout(function() { document.body.removeChild(element); }, 0);
|
| + window.setTimeout(function() {
|
| + document.body.removeChild(element);
|
| + }, 0);
|
| }
|
|
|
| /**
|
| @@ -523,7 +525,9 @@ if (!('key' in KeyboardEvent.prototype)) {
|
| */
|
| function importModules(moduleNames) {
|
| return new Promise(function(resolve) {
|
| - define(moduleNames, function() { resolve(Array.from(arguments)); });
|
| + define(moduleNames, function() {
|
| + resolve(Array.from(arguments));
|
| + });
|
| });
|
| }
|
|
|
|
|