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

Commit

Permalink
Merge pull request #17 from EatYourSpinach/master
Browse files Browse the repository at this point in the history
make core-dialog.open not conditional so it gets propagated back to the ...
  • Loading branch information
Scott J. Miles committed Jul 18, 2014
2 parents 2d272a2 + f262a9e commit 38bfe05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions paper-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<paper-shadow z="3" hasPosition></paper-shadow>
</div>

<core-overlay id="overlay" opened?="{{opened}}" autoCloseDisabled?="{{autoCloseDisabled}}" backdrop?="{{backdrop}}" layered?="{{layered}}" target="{{}}" sizingTarget="{{$.container}}" closeSelector="{{closeSelector}}" transition="{{transition}}" margin="20"></core-overlay>
<core-overlay id="overlay" opened="{{opened}}" autoCloseDisabled?="{{autoCloseDisabled}}" backdrop?="{{backdrop}}" layered?="{{layered}}" target="{{}}" sizingTarget="{{$.container}}" closeSelector="{{closeSelector}}" transition="{{transition}}" margin="20"></core-overlay>

<div id="container" layout vertical>

Expand Down Expand Up @@ -92,7 +92,7 @@ <h1>{{heading}}</h1>
* @default false
*/
opened: false,

/**
* If true, the dialog has a backdrop darkening the rest of the screen.
* The backdrop element is attached to the document body and may be styled
Expand All @@ -102,7 +102,7 @@ <h1>{{heading}}</h1>
* @attribute backdrop
* @type boolean
* @default false
*/
*/
backdrop: false,

/**
Expand Down Expand Up @@ -151,7 +151,7 @@ <h1>{{heading}}</h1>
*/
transition: '',

/**
/**
* Toggle the dialog's opened state.
* @method toggle
*/
Expand Down

0 comments on commit 38bfe05

Please sign in to comment.