platypush/platypush/backend/http/templates/elements/switch.html

10 lines
320 B
HTML
Raw Normal View History

<script type="text/x-template" id="tmpl-switch">
<div class="switch" :class="{glow: glow}" @click="toggled">
<input type="checkbox" v-model="value">
<label></label>
</div>
</script>
2019-05-26 03:53:48 +02:00
<script type="application/javascript" src="{{ url_for('static', filename='js/elements/switch.js') }}"></script>