| Index: ui/webui/resources/js/cr/ui/focus_manager.js
|
| diff --git a/ui/webui/resources/js/cr/ui/focus_manager.js b/ui/webui/resources/js/cr/ui/focus_manager.js
|
| index 8fb528dcc332897797f3aff477a0200c90877317..3f36a4254f5c557b19251680958c301f294c1ed3 100644
|
| --- a/ui/webui/resources/js/cr/ui/focus_manager.js
|
| +++ b/ui/webui/resources/js/cr/ui/focus_manager.js
|
| @@ -9,7 +9,8 @@ cr.define('cr.ui', function() {
|
| * the topmost overlay) do not receive focus.
|
| * @constructor
|
| */
|
| - function FocusManager() {}
|
| + function FocusManager() {
|
| + }
|
|
|
| FocusManager.prototype = {
|
| /**
|
| @@ -36,7 +37,9 @@ cr.define('cr.ui', function() {
|
| * allowed to receive focus.
|
| * @return {Element} The element containing focusable elements.
|
| */
|
| - getFocusParent: function() { return document.body; },
|
| + getFocusParent: function() {
|
| + return document.body;
|
| + },
|
|
|
| /**
|
| * Returns the elements on the page capable of receiving focus.
|
|
|