Skip to content

Commit

Permalink
Fully custom placeholders.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael committed Mar 26, 2012
1 parent e3f48a3 commit df6a47d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/proper.js
Expand Up @@ -505,9 +505,9 @@
if ($.trim($(activeElement).text()).length === 0) {
$(activeElement).addClass('empty');
if (options.markup) {
$(activeElement).html('<p>&laquo; '+options.placeholder+' &raquo;</p>');
$(activeElement).html('<p>'+options.placeholder+'</p>');
} else {
$(activeElement).html('&laquo; '+options.placeholder+' &raquo;');
$(activeElement).html(options.placeholder);
}
}
}
Expand Down

0 comments on commit df6a47d

Please sign in to comment.