Commit 44dc7cd0 authored by Sindre Sorhus's avatar Sindre Sorhus

Merge pull request #489 from trek/emberjs-what-is-this-view-i-dont-even

Remove TodoView, which isn't even used.
parents 815d9da5 cb626b16
/*global Todos Ember */
'use strict';
Todos.TodoView = Ember.View.extend({
tagName: 'li',
classNameBindings: [
'todo.isCompleted:completed',
'isEditing:editing'
],
doubleClick: function () {
this.set('isEditing', true);
}
});
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