Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
fixes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Aug 13, 2014
1 parent 93a3630 commit 2914283
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core-overlay.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,16 @@ <h2>Dialog</h2>
@param {Object} detail
@param {Object} detail.opened the opened state
-->
<!--
Fired when the `core-overlay` has completely opened.
@event core-overlay-open-completed
-->
<!--
Fired when the `core-overlay` has completely closed.
@event core-overlay-close-completed
-->
<style>
.core-overlay-backdrop {
position: fixed;
Expand Down Expand Up @@ -385,6 +394,8 @@ <h2>Dialog</h2>
this.layer.removeElement(this.target);
}
}
this.fire('core-overlay-' + (this.opened ? 'open' : 'close') +
'-completed');
this.applyFocus();
},

Expand Down

0 comments on commit 2914283

Please sign in to comment.