14 lines
464 B
JSON
Executable File
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> |