- Fix "false" placeholder in contact notes textarea

pull/1/head
alecpl 12 years ago
parent c71e95b775
commit 28391b4ec3

@ -4545,10 +4545,13 @@ function rcube_webmail()
this.init_edit_field = function(col, elem)
{
var label = this.env.coltypes[col].label;
if (!elem)
elem = $('.ff_' + col);
elem.placeholder(ref.env.coltypes[col].label);
if (label)
elem.placeholder(label);
};
this.insert_edit_field = function(col, section, menu)

Loading…
Cancel
Save