Commit 759b3cfd authored by Hugo Jobling's avatar Hugo Jobling

remove FIXME as Polymer issue 186 is now closed

parent d5a913d3
...@@ -17,9 +17,6 @@ ...@@ -17,9 +17,6 @@
editing: false, editing: false,
editAction: function () { editAction: function () {
this.editing = true; this.editing = true;
// FIXME: Custom elements extended from <input> don't have
// <input> binding behavior.
// https://github.com/Polymer/polymer/issues/186
this.$.edit.value = this.title = this.item.title; this.$.edit.value = this.title = this.item.title;
// schedule focus for the end of microtask, when the input will be visible // schedule focus for the end of microtask, when the input will be visible
Platform.flush(); Platform.flush();
...@@ -28,9 +25,6 @@ ...@@ -28,9 +25,6 @@
}); });
}, },
commitAction: function () { commitAction: function () {
// FIXME: Custom elements extended from <input> don't have
// <input> binding behavior.
// https://github.com/Polymer/polymer/issues/186
this.title = this.$.edit.value; this.title = this.$.edit.value;
if (this.editing) { if (this.editing) {
this.editing = false; this.editing = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment