2017-01-08 20:21:55 +01:00
|
|
|
webui.directive("textarea", function() {
|
|
|
|
return {
|
|
|
|
restrict: "E",
|
|
|
|
link: function(scope, element) {
|
|
|
|
element.attr(
|
|
|
|
"placeholder",
|
2017-05-05 04:26:46 +02:00
|
|
|
function(index, placeholder) {
|
|
|
|
if (placeholder !== undefined) {
|
|
|
|
return placeholder.replace(/\\n/g, "\n");
|
|
|
|
} else {
|
|
|
|
return placeholder;
|
|
|
|
}
|
|
|
|
}
|
2017-01-08 20:21:55 +01:00
|
|
|
).bind("keydown keypress", function(event) {
|
|
|
|
if (event.ctrlKey && event.which === 13) {
|
|
|
|
event.preventDefault();
|
|
|
|
scope.$close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|