allow emptytext to be html, fix #164
This commit is contained in:
@ -287,7 +287,7 @@ Makes editable any HTML element on the page. Applied as jQuery method.
|
||||
//emptytext shown only for enabled
|
||||
if(!this.options.disabled) {
|
||||
if (this.isEmpty) {
|
||||
this.$element.text(this.options.emptytext);
|
||||
this.$element.html(this.options.emptytext);
|
||||
if(this.options.emptyclass) {
|
||||
this.$element.addClass(this.options.emptyclass);
|
||||
}
|
||||
|
Reference in New Issue
Block a user