Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 1 | |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 2 | <div class="row column"> |
| 3 | <h1>Unit ID Indicator</h1> |
| 4 | </div> |
| 5 | |
| 6 | <div class="row column"> |
| 7 | <h2 class="h4">Unit ID control</h2> |
| 8 | </div> |
| 9 | |
| 10 | <div class="row column"> |
| 11 | <div class="btm-border-grey"> |
| 12 | <div class="switch inline"> |
| 13 | <input id="toggle__round" class="toggle-switch toggle-switch__round-flat" type="checkbox" tabindex="0"> |
| 14 | <label for="toggle__round"></label> |
| 15 | </div> |
| 16 | <div class="uid-switch__label inline"> |
| 17 | <p>Unit ID indicator is <span class="uid-switch__status">off</span></p> |
| 18 | <p>Control unit indicator to identify server unit.</p> |
| 19 | </div> |
| 20 | </div> |
| 21 | </div> |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 22 | |
Michael Davis | 5a752b2 | 2017-03-09 09:41:08 -0600 | [diff] [blame] | 23 | <script src="js/app.min.js"></script> |
| 24 | |
| 25 | <!-- FOR DEMO ONLY __ DO NOT COPY BELOW --> |
| 26 | <script> |
| 27 | $('.toggle-switch').on('click', function(){ |
| 28 | console.log($(this).parents('.row')); |
| 29 | $(this).parents('.row').find('.uid-switch__status').html('on'); |
| 30 | }); |
| 31 | </script> |
Iftekharul Islam | b37fdfb | 2017-07-12 15:36:20 -0500 | [diff] [blame] | 32 | |