<p>
The <strong>play</strong> plugin disables auto-run and adds a <strong>Run</strong> button that manually updates the preview iframe.
</p>
<link rel="stylesheet" href="../bower_components/codemirror/lib/codemirror.css">
<script src="../bower_components/codemirror/lib/codemirror.js"></script>
<script src="../bower_components/codemirror/mode/javascript/javascript.js"></script>
<script src="../bower_components/codemirror/mode/css/css.js"></script>
<script src="../bower_components/codemirror/mode/xml/xml.js"></script>
<script src="../bower_components/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<div id="jotted-demo-play" class="jotted-theme-bin"></div>
<link href="../jotted.css" rel="stylesheet">
<script src="../jotted.js"></script>
<script>
new Jotted(document.querySelector('#jotted-demo-play'), {
files: [
{
type: 'html',
content: '<h1>\n Play Plugin\n</h1>'
},
{
type: 'css',
content: 'body {\n background: yellow;\n}'
}
],
plugins: [
{
name: 'play',
options: {
// to start with a blank preview when initializing the plugin,
// and only run the initial content after the first Run press.
// firstRun: false
}
},
'codemirror'
]
});
</script>