Skip to content

Instantly share code, notes, and snippets.

@jimmymain
Created December 1, 2014 06:00
Show Gist options
  • Save jimmymain/4ab7dfae1af17d481322 to your computer and use it in GitHub Desktop.
Save jimmymain/4ab7dfae1af17d481322 to your computer and use it in GitHub Desktop.
summernote sync
$('.row').summernote({
height: 150,
focus: true,
toolbar: [
['style', ['bold', 'italic', 'underline']],
['para', ['ul', 'ol']],
],
onkeyup: function (e) {
$('.active_textarea').val($(this).code());
$('.active_textarea').change();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment