diff options
author | Trent <trentdrichardson@gmail.com> | 2015-11-23 17:01:29 -0500 |
---|---|---|
committer | Trent <trentdrichardson@gmail.com> | 2015-11-23 17:01:29 -0500 |
commit | dc3d12ae389c03c732e7ce3f4f36e81b7feb48cb (patch) | |
tree | cf168fb07e5695ad4cabc786f946ad4baa319a1e /src/docs/examples.html | |
parent | bdafae62067d0780d68b4b39ae1a2dc7675b4ad9 (diff) | |
download | jQuery-Timepicker-Addon-dc3d12ae389c03c732e7ce3f4f36e81b7feb48cb.zip jQuery-Timepicker-Addon-dc3d12ae389c03c732e7ce3f4f36e81b7feb48cb.tar.gz jQuery-Timepicker-Addon-dc3d12ae389c03c732e7ce3f4f36e81b7feb48cb.tar.bz2 |
#843 and #845 - fix for clicking Now - removes any partial support for alpha timezones.
Diffstat (limited to 'src/docs/examples.html')
-rw-r--r-- | src/docs/examples.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/docs/examples.html b/src/docs/examples.html index 9364fba..fa112d1 100644 --- a/src/docs/examples.html +++ b/src/docs/examples.html @@ -101,27 +101,6 @@ $('#timezone_example_2').datetimepicker({ </pre> </div> - <!-- ============= example --> - <div class="example-container"> - <p>You may also use timezone string abbreviations for values. This should be used with caution. Computing accurate javascript Date objects may not be possible when trying to retrieve or set the date from timepicker (see setDate and getDate examples below). For simple input values however this should work.</p> - <div> - <input type="text" name="timezone_example_3" id="timezone_example_3" value="" /> - </div> -<pre> -$('#timezone_example_3').datetimepicker({ - timeFormat: 'HH:mm z', - timezone: 'MT', - timezoneList: [ - { value: 'ET', label: 'Eastern'}, - { value: 'CT', label: 'Central' }, - { value: 'MT', label: 'Mountain' }, - { value: 'PT', label: 'Pacific' } - ] -}); - -</pre> - </div> - <h3 id="slider_examples">Slider Modifications</h3> <!-- ============= example --> |