fix missing wrapper attribute

This commit is contained in:
Martin Zimmermann 2016-03-31 12:35:26 +02:00
parent c8311bdda7
commit 2612fbc0f5

View File

@ -107,6 +107,10 @@ define(function() {
"value": {
get: function() { return node.value; },
set: function(value) { node.value = value; }
},
"placeholder": {
get: function() { return node.placeholder; },
set: function(placeholder) { node.placeholder = placeholder; }
}
});
}