blob: 75865163ade043c22923f29480d6dde31baf54b4 [file] [log] [blame]
Michael Davis5a752b22017-03-09 09:41:08 -06001
Michael Davis5a752b22017-03-09 09:41:08 -06002 <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 Davis5a752b22017-03-09 09:41:08 -060022
Michael Davis5a752b22017-03-09 09:41:08 -060023<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 Islamb37fdfb2017-07-12 15:36:20 -050032