karthick2014 / jwysiwyg

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

Little bug with content saving #28

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. When it's work in editor all right
2. But if we take textarea value there will be absent last typed symbol
3. It's arise when you do this line:

$(this.editorDoc).keydown(function() { self.saveContent(); })

because when key is down there is no symbol yet.

What is the expected output? What do you see instead?

All typed symbols. String without last letter.

What version of the product are you using? On what operating system?

jwysiwyg-0.3, WindowsXP, FireFox 2.0.0.14

Please provide any additional information below.

fix it like this: $(this.editorDoc).keyup(function() { self.saveContent(); })

P.S. Sorry for my English...

Original issue reported on code.google.com by smilear...@gmail.com on 13 Jun 2008 at 7:48

GoogleCodeExporter commented 8 years ago

Original comment by joksnet on 26 Sep 2008 at 1:42

GoogleCodeExporter commented 8 years ago
Please update release with this fix

Original comment by adanl...@gmail.com on 24 Oct 2008 at 8:15