taoguan / jwysiwyg

Automatically exported from code.google.com/p/jwysiwyg
0 stars 0 forks source link

html display is not displayed correctly #166

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. set use html to true

What is the expected output? What do you see instead?
when clicking on the <> no original content is shown

What version of the product are you using? On what operating system?
1.0.6. on Linux, chrome

Please provide any additional information below.
it is solved by applying 
                    if ( this.viewHTML ) {
                        this.setContent( $(this.original).val() );
                        $(this.original).hide();
                        $(this.original).css('opacity', '0');
                    } else {
                        this.saveContent();
                        $(this.original).show();
                        $(this.original).css('opacity', '100');
                    }

Original issue reported on code.google.com by bertheik...@gmail.com on 2 Mar 2010 at 12:21