Allow HTML in FormField->setDescription()

This commit is contained in:
Ingo Schommer 2012-12-18 15:02:23 +01:00
parent d5a1c3d99a
commit 9b3aebd310

View File

@ -13,7 +13,7 @@
if(title && title.length && field.has('.help').length == 0) {
var span = $("<span></span>", {
"class": "help",
"text": title
"html": title
});
field.append(span);