heyanlong / summernote-ext-highlight

Based on code-prettify the summernote code highlighting plugin
MIT License
29 stars 29 forks source link

summernote method doesnt exist #5

Open pipiscrew opened 8 years ago

pipiscrew commented 8 years ago

when click the preview button I getting : image

looking through https://github.com/summernote/summernote/blob/develop/examples/textarea.html line26 - $('.summernote').summernote('code')

your example code : $('.preview-btn').click(function () { $('#preview-box').html($('.summernote').code()); $('.summernote').code(''); prettyPrint(); }); modified code : $('.preview-btn').click(function () { $('#preview-box').html($('.summernote').summernote('code')); $('.summernote').val(''); prettyPrint(); }); working, is buggy when inserting HTML code...

heyanlong commented 7 years ago

@pipiscrew please use

$('#summernote').summernote('code');