Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
todomvc
Commits
f056643c
Commit
f056643c
authored
Sep 30, 2013
by
Addy Osmani
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #691 from dissimile/gh-pages
remove FIXME as Polymer issue 186 is now closed
parents
d5a913d3
759b3cfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
architecture-examples/polymer/elements/td-item.html
architecture-examples/polymer/elements/td-item.html
+0
-6
No files found.
architecture-examples/polymer/elements/td-item.html
View file @
f056643c
...
...
@@ -17,9 +17,6 @@
editing
:
false
,
editAction
:
function
()
{
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
;
// schedule focus for the end of microtask, when the input will be visible
Platform
.
flush
();
...
...
@@ -28,9 +25,6 @@
});
},
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
;
if
(
this
.
editing
)
{
this
.
editing
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment