Removed duplicate

This commit is contained in:
2015-09-28 13:14:47 +08:00
parent f7203e287d
commit 19ff95577b
+2 -2
View File
@@ -25,7 +25,7 @@ angular.module('timezoneSelectExample', ['angular-timezone-selector']);
Then use directive `timezone-selector`.
```html
<timezone-selector ng-model="timezone"><timezone-selector ng-model="timezone"></timezone-selector>
<timezone-selector ng-model="timezone">
```
## Options
@@ -36,7 +36,7 @@ Options can be included as attributes in the html element.
- **display-utc** ["true"] - This show UTC offsets in the timezone names
- **show-local** ["true"] - This detects local timezone's and includes at the top. If jsTimezoneDetect is installed if will include the detected timezone otherwise it fallback on moment js and list all timezones with the same browsers UTC offset.
- **primary-choices** ["space seperated timezone names"] - This lets you put important timezone's at the top of the list or include extra aliases. Use names from momentjs-timezone, which you can list with the command: `moment.tz.names;`.
An example of using the options is below:
```html