20 lines
874 B
Plaintext
20 lines
874 B
Plaintext
<!-- Templates for faders -->
|
|
|
|
<!-- Vertical Fader -->
|
|
<script type="text/template" id="template-fader-v">
|
|
<div class="fader vertical" data-control="fader" data-fader-id="{{ faderId }}" data-orientation="vertical" style="height:{{height}}px;">
|
|
<div class="handle" style="bottom:0%;" data-control="fader-handle">
|
|
<%= image_tag "content/slider_gain_vertical.png", {:width => 28, :height => 11} %>
|
|
</div>
|
|
</div>
|
|
</script>
|
|
|
|
<!-- Horizontal Fader -->
|
|
<script type="text/template" id="template-fader-h">
|
|
<div class="fader horizontal" data-control="fader" data-fader-id="{{ faderId }}" data-orientation="horizontal" style="width:{{width}}px;">
|
|
<div class="handle" style="left:0%;" data-control="fader-handle">
|
|
<%= image_tag "content/slider_volume.png", {:height => 17, :width => 8} %>
|
|
</div>
|
|
</div>
|
|
</script>
|