What version of the product are you using? On what operating system?
3.0.5 mac
Please provide any additional information below.
Prior to changing the js below watermark was having a js error "text is null"
and not showing all
of the watermarks again when I did a $.watermark.showAll() call.
line 205 - I changed the js to test if text exists before testing the
text.length and it got rid of the
js error i was having. Watermarks displayed again correctly after this with
$.watermark.showAll()
// if ((maxLen > 0) && (text.length > maxLen)) {
if ((maxLen > 0) && ( text && text.length > maxLen)) {
Original issue reported on code.google.com by reganyel...@gmail.com on 18 May 2010 at 12:36
Original issue reported on code.google.com by
reganyel...@gmail.com
on 18 May 2010 at 12:36