Skip to content

Instantly share code, notes, and snippets.

@undavide
Created March 1, 2019 17:38
Show Gist options
  • Save undavide/e28806e47548006a4377e5299494381e to your computer and use it in GitHub Desktop.
Save undavide/e28806e47548006a4377e5299494381e to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link id="hostStyle" rel="stylesheet" href="css/theme.css"/>
<link id="theme" rel="stylesheet" href="css/light.css"/>
<title></title>
</head>
<body>
<div id="container" >
<h3 class="center">Photoshop Events - JSON Callback</h3>
<h4 class="center">Listen for events:</h4>
<div class="switchContainer">
<label class="topcoat-switch">
<input id="make" type="checkbox" class="topcoat-switch__input">
<div class="topcoat-switch__toggle"></div>
</label>
<label class="switch-label">"make"</label>
</div>
<div class="switchContainer">
<label class="topcoat-switch">
<input id="duplicate" type="checkbox" class="topcoat-switch__input">
<div class="topcoat-switch__toggle"></div>
</label>
<label class="switch-label">"duplicate"</label>
</div>
<div class="switchContainer">
<label class="topcoat-switch">
<input id="delete" type="checkbox" class="topcoat-switch__input">
<div class="topcoat-switch__toggle"></div>
</label>
<label class="switch-label">"delete"</label>
</div>
<div class="switchContainer">
<label class="topcoat-switch">
<input id="close" type="checkbox" class="topcoat-switch__input">
<div class="topcoat-switch__toggle"></div>
</label>
<label class="switch-label">"close"</label>
</div>
</div>
<script src="js/libs/CSInterface.js"></script>
<script src="js/libs/jquery-2.0.2.min.js"></script>
<script src="js/themeManager.js"></script>
<script src="js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment