Hey Ho!
Today i downloaded and installed the gearpad demo application.
There are two lines of code which causes that the value of the content
column in the mysql database will be updated with an empty value. Then
i replaced the strict inequality operator !== with the type converting
equality operator != on two lines.
- line 107 of note.js;  from if (newContent != null)  to if
(newContent !== null)
- line 192 in datastore.js; from  if (response && response.content !=
null) to if (response && response.content !== null)
after that everything worked properly on firefox3(linux).

cheers
stefan

Reply via email to