2025-11-02 14:35:35 +03:00

14 lines
464 B
JSON
Executable File

<!-- required files -->
<link href="../assets/plugins/switchery/dist/switchery.min.css" rel="stylesheet" />
<script src="../assets/plugins/switchery/dist/switchery.min.js"></script>
<!-- html -->
<input type="checkbox" id="switchery-default" checked />
<!-- script -->
<script>
var elm = document.getElementById('switchery-default');
var switchery = new Switchery(elm, {
color: '#00acac'
});
</script>