Commit cb626b16 authored by Trek Glowacki's avatar Trek Glowacki

Remove TodoView, which isn't even used.

parent 1afd8183
/*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