Fix "Cannot read property 'replace' of undefined"
Signed-off-by: kuoruan <kuoruan@gmail.com>
This commit is contained in:
parent
ec53ee68de
commit
f6793e5fb3
|
@ -4,7 +4,13 @@ webui.directive("textarea", function() {
|
|||
link: function(scope, element) {
|
||||
element.attr(
|
||||
"placeholder",
|
||||
element.attr("placeholder").replace(/\\n/g, "\n")
|
||||
function(index, placeholder) {
|
||||
if (placeholder !== undefined) {
|
||||
return placeholder.replace(/\\n/g, "\n");
|
||||
} else {
|
||||
return placeholder;
|
||||
}
|
||||
}
|
||||
).bind("keydown keypress", function(event) {
|
||||
if (event.ctrlKey && event.which === 13) {
|
||||
event.preventDefault();
|
||||
|
|
Loading…
Reference in New Issue
Block a user