Skip to content

Instantly share code, notes, and snippets.

@ilucin
Created September 6, 2016 10:18
Show Gist options
  • Save ilucin/3ef25981712b81ad7b7cc49c70e14575 to your computer and use it in GitHub Desktop.
Save ilucin/3ef25981712b81ad7b7cc49c70e14575 to your computer and use it in GitHub Desktop.
(function() {
var trix = document.querySelector('trix-editor');
var btn = document.createElement('button');
btn.innerHTML = 'Press me';
btn.addEventListener('click', function() {
trix.editor.loadJSON({document: []});
trix.editor.insertHTML('');
});
trix.parentElement.appendChild(btn);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment