Skip to content

Commit

Permalink
docs(popover): update config docs to include popover transitions
Browse files Browse the repository at this point in the history
fix demos so the dot ripple displays correctly

references #5420
  • Loading branch information
brandyscarney committed May 24, 2016
1 parent 14f6d25 commit ff1680c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 5 additions & 4 deletions demos/popover/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,23 @@ ion-col {
width: 30px;
border-radius: 50%;
margin: 10px auto;
position: relative;
}

.dot-white {
background-color: #fff;
background-color: rgb(255,255,255);
}

.dot-tan {
background-color: #f9f1e4;
background-color: rgb(249,241,228);
}

.dot-grey {
background-color: #4c4b50;
background-color: rgb(76,75,80);
}

.dot-black {
background-color: #000;
background-color: rgb(0,0,0);
}

.dot.selected {
Expand Down
1 change: 1 addition & 0 deletions src/components/popover/test/basic/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ ion-col {
width: 30px;
border-radius: 50%;
margin: 10px auto;
position: relative;
}

.dot-white {
Expand Down
2 changes: 2 additions & 0 deletions src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ import {isObject, isDefined, isFunction, isArray} from '../util/util';
* | `pageTransitionDelay` | `number` | The delay in milliseconds before the transition starts while changing pages. |
* | `pickerEnter` | `string` | The name of the transition to use while a picker is presented. |
* | `pickerLeave` | `string` | The name of the transition to use while a picker is dismissed. |
* | `popoverEnter` | `string` | The name of the transition to use while a popover is presented. |
* | `popoverLeave` | `string` | The name of the transition to use while a popover is dismissed. |
* | `spinner` | `string` | The default spinner to use when a name is not defined. |
* | `tabbarHighlight` | `boolean` | Whether to show a highlight line under the tab when it is selected. |
* | `tabbarLayout` | `string` | The layout to use for all tabs. Available options: `"icon-top"`, `"icon-left"`, `"icon-right"`, `"icon-bottom"`, `"icon-hide"`, `"title-hide"`. |
Expand Down

0 comments on commit ff1680c

Please sign in to comment.