| Index: samples/third_party/todomvc/web/editable_label.html
|
| diff --git a/samples/third_party/todomvc/web/editable_label.html b/samples/third_party/todomvc/web/editable_label.html
|
| index 2b98299c3ee167673afbb7a1fce52b95b254f067..f42b271cc0389e22e2d6220b69f64a5e8fa6aa6d 100644
|
| --- a/samples/third_party/todomvc/web/editable_label.html
|
| +++ b/samples/third_party/todomvc/web/editable_label.html
|
| @@ -6,12 +6,12 @@ BSD-style license that can be found in the LICENSE file.
|
| <polymer-element name="editable-label">
|
| <template>
|
| <template if="{{!editing}}">
|
| - <label class='edit-label' on-doubleclick="edit">{{value}}</label>
|
| + <label class='edit-label' on-doubleclick="{{edit}}">{{value}}</label>
|
| </template>
|
| <template if="{{editing}}">
|
| - <form on-submit="update">
|
| + <form on-submit="{{update}}">
|
| <input id="edit" class="edit editing"
|
| - on-blur="update" on-keyup="maybeCancel">
|
| + on-blur="{{update}}" on-keyup="{{maybeCancel}}">
|
| </form>
|
| </template>
|
| </template>
|
|
|