Skip to content

Commit

Permalink
docs(dialog): fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
es128 authored and pkozlowski-opensource committed Apr 13, 2013
1 parent b58c9c8 commit 9e6e969
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/dialog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ Used for configuring global options for dialogs.

Sets the default global options for your application. Options can be overridden when opening dialogs. Available options are:

* `backdrop`: a boolean value indicating whether a backdrop should be used or not.
* `backdrop`: a boolean value indicating whether a backdrop should be used or not, defaults to true
* `dialogClass`: the css class for the modal div, defaults to 'modal'
* `backdropClass`: the css class for the backdrop, defaults to 'modal-backdrop'
* `transitionClass`: the css class that applies transitions to the nodal and backdrop, defaults to 'fade'
* `triggerClass`: the css class that triggers the transitions. default to 'in'
* `transitionClass`: the css class that applies transitions to the modal and backdrop, defaults to 'fade'
* `triggerClass`: the css class that triggers the transitions, defaults to 'in'
* `dialogOpenClass`: the css class that is added to body when dialog is opened, defaults to 'modal-open'
* `resolve`: members that will be resolved and passed to the controller as locals
* `controller`: the controller to associate with the included partial view
* `backdropFade`: a boolean value indicating whether the backdrop should fade in and out using a CSS transition, defaults to false
* `dialogFade`: a boolean value indicating whether the nodal should fade in and out using a CSS transition, defaults to false
* `dialogFade`: a boolean value indicating whether the modal should fade in and out using a CSS transition, defaults to false
* `keyboard`: indicates whether the dialog should be closable by hitting the ESC key, defaults to true
* `backdropClick`: indicates whether the dialog should be closable by clicking the backdrop area, defaults to true

Expand All @@ -33,7 +33,7 @@ Example:

## Description

Allows you to open dialogs from within you controller.
Allows you to open dialogs from within your controller.

### Methods

Expand All @@ -60,7 +60,7 @@ Example:

#### `messageBox(title, message, buttons)`

Opens a message box with the specified `title`, `message` ang a series of `buttons` can be provided, every button can specify:
Opens a message box with the specified `title`, `message` and a series of `buttons` can be provided, every button can specify:

* `label`: the label of the button
* `result`: the result used to invoke the close method of the dialog
Expand Down

0 comments on commit 9e6e969

Please sign in to comment.