Index: ui/webui/resources/js/cr/ui/menu_button.js |
diff --git a/ui/webui/resources/js/cr/ui/menu_button.js b/ui/webui/resources/js/cr/ui/menu_button.js |
index a42aa3e28b3057fc7217acbc68f4eeb9d39b9a1b..d54de2df5086bb10ec32968599bc81ffd223e3ba 100644 |
--- a/ui/webui/resources/js/cr/ui/menu_button.js |
+++ b/ui/webui/resources/js/cr/ui/menu_button.js |
@@ -67,7 +67,9 @@ cr.define('cr.ui', function() { |
* The menu associated with the menu button. |
* @type {cr.ui.Menu} |
*/ |
- get menu() { return this.menu_; }, |
+ get menu() { |
+ return this.menu_; |
+ }, |
set menu(menu) { |
if (typeof menu == 'string' && menu[0] == '#') { |
menu = assert(this.ownerDocument.getElementById(menu.slice(1))); |
@@ -240,7 +242,9 @@ cr.define('cr.ui', function() { |
/** |
* Whether the menu is shown. |
*/ |
- isMenuShown: function() { return this.hasAttribute('menu-shown'); }, |
+ isMenuShown: function() { |
+ return this.hasAttribute('menu-shown'); |
+ }, |
/** |
* Positions the menu below the menu button. At this point we do not use any |