follow style guidelines
authorleethomas <leet944@gmail.com>
Mon, 11 Jan 2016 03:15:40 +0000 (19:15 -0800)
committerleethomas <leet944@gmail.com>
Mon, 11 Jan 2016 03:15:40 +0000 (19:15 -0800)
atom/browser/api/lib/dialog.coffee
atom/browser/ui/message_box_mac.mm
docs/api/dialog.md

index 2768fe0..2daf346 100644 (file)
@@ -91,10 +91,10 @@ module.exports =
 
     throw new TypeError('Buttons need to be array') unless Array.isArray options.buttons
 
-    options.title              ?= ''
-    options.message            ?= ''
-    options.detail             ?= ''
-    options.icon               ?= null
+    options.title ?= ''
+    options.message ?= ''
+    options.detail ?= ''
+    options.icon ?= null
     options.defaultId ?= -1
 
     # Choose a default button to get selected when dialog is cancelled.
index 79c60b5..3acc46e 100644 (file)
@@ -84,9 +84,9 @@ NSAlert* CreateNSAlert(NativeWindow* parent_window,
     [button setTag:i];
 
     if (i == (size_t)default_id) {
-      // focus the button at default_id if the user opted to do so.
+      // Focus the button at default_id if the user opted to do so.
       // The first button added gets set as the default selected.
-      // So remove that default, and make the requested button the default
+      // So remove that default, and make the requested button the default.
       [[[alert buttons] objectAtIndex:0] setKeyEquivalent:@""];
       [button setKeyEquivalent:@"\r"];
     }
index 519f89b..84a22ef 100644 (file)
@@ -87,7 +87,8 @@ will be passed via `callback(filename)`
   `"warning"`. On Windows, "question" displays the same icon as "info", unless
   you set an icon using the "icon" option.
   * `buttons` Array - Array of texts for buttons.
-  * `defaultId` Integer - Index of the button in the buttons array which will be selected by default when the message box opens.
+  * `defaultId` Integer - Index of the button in the buttons array which will
+    be selected by default when the message box opens.
   * `title` String - Title of the message box, some platforms will not show it.
   * `message` String - Content of the message box.
   * `detail` String - Extra information of the message.