Skip to content

Commit

Permalink
Clarify fire option defaults. Fixes #2180
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jul 31, 2015
1 parent 9bdcc3b commit 7c3e516
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/standard/utils.html
Expand Up @@ -148,9 +148,10 @@
* @param {String} type Name of event type.
* @param {Object=} detail Detail object containing event-specific
* payload.
* @param {Object=} options Object specifying options. These
* may include `bubbles` (boolean), `cancelable` (boolean), and `node`
* on which to fire the event (HTMLElement, defaults to `this`).
* @param {Object=} options Object specifying options. These may include:
* `bubbles` (boolean, defaults to `true`),
* `cancelable` (boolean, defaults to false), and
* `node` on which to fire the event (HTMLElement, defaults to `this`).
* @return {CustomEvent} The new event that was fired.
*/
fire: function(type, detail, options) {
Expand Down

0 comments on commit 7c3e516

Please sign in to comment.