mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-29 19:29:35 +02:00
fix textarea field
This commit is contained in:
@@ -15,12 +15,12 @@ iD.ui.preset.textarea = function(field) {
|
||||
|
||||
function change() {
|
||||
var t = {};
|
||||
t[field.key] = input.text();
|
||||
t[field.key] = input.property('value');
|
||||
event.change(t);
|
||||
}
|
||||
|
||||
i.tags = function(tags) {
|
||||
input.text(tags[field.key] || '');
|
||||
input.property('value', tags[field.key] || '');
|
||||
};
|
||||
|
||||
i.focus = function() {
|
||||
|
||||
Reference in New Issue
Block a user