From 2612fbc0f563c5a65b8dd004689ced04d190c20a Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Thu, 31 Mar 2016 12:35:26 +0200 Subject: [PATCH] fix missing wrapper attribute --- isso/js/app/dom.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/isso/js/app/dom.js b/isso/js/app/dom.js index e04dd00..9a50609 100644 --- a/isso/js/app/dom.js +++ b/isso/js/app/dom.js @@ -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; } } }); }