diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-12-13 14:12:55 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-12-13 21:41:38 -0500 |
commit | e7bacd45e1b44090781067159b63fe14b46b8611 (patch) | |
tree | d291a561cd58d4e42536b76d9ec91d26d72a87a5 /docs/examples/index.html | |
parent | 85a578479406865502a3eb504577c1dfe64f34f5 (diff) |
Use HTML5 type=datetime-local inputs for ChartCoordinator.
Diffstat (limited to 'docs/examples/index.html')
-rw-r--r-- | docs/examples/index.html | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/docs/examples/index.html b/docs/examples/index.html index b86fe91..44fae85 100644 --- a/docs/examples/index.html +++ b/docs/examples/index.html @@ -9,7 +9,6 @@ <link rel="stylesheet" type="text/css" href="assets/css/style.css" /> <link rel="stylesheet" type="text/css" href="assets/css/jquerytools.tabs.tabs-no-images.css" /> - <link rel="stylesheet" type="text/css" href="assets/css/jquerytools.dateinput.skin1.css" /> <script type="text/javascript" src="assets/js/dependencies.js"></script> <script type="text/javascript" src="../../jarmon/jarmon.js"></script> @@ -20,26 +19,13 @@ <body> <div class="chartRangeControl"> <form> - <div> - <span class="timerange_control custom"> - <img src="assets/icons/calendar.png" width="16" height="16" alt="calendar" class="from_custom" - title="Click to choose a custom start date" /> - <input name="from_custom" type="text" readonly="readonly" - title="Time range start" /> - <img src="assets/icons/calendar.png" width="16" height="16" alt="calendar" class="to_custom" - title="Click to choose a custom end date" /> - <input name="to_custom" type="text" readonly="readonly" - title="Time range end" /> + <div class="range-inputs"> + <span class="custom"> + <input name="from" type="datetime-local" step="1" /> + <input name="to" type="datetime-local" step="1" /> </span> - <span class="timerange_control standard"> - <select name="from_standard" - title="Time range shortcuts - click to select an alternative time range" > - </select> - </span> - <input name="from" type="hidden" /> - <input name="to" type="hidden" /> - <select name="tzoffset" - title="Timezone offset - click to choose a custom timezone offset" ></select> + <select name="shortcuts" title="Time range shortcuts - click to select an alternative time range" ></select> + <select name="tzoffset" title="Timezone offset - click to choose a custom timezone offset" ></select> <input name="action" value="Update" type="button" title="Graph update - click to update all graphs" /> </div> |