todomvc
Version:
> Helping you select an MV\* framework
29 lines (28 loc) • 518 B
JavaScript
/*jshint strict:false */
/*global enyo:false */
// The footer section
enyo.kind({
name: 'ToDo.FooterView',
id: 'info',
tag: 'footer',
components: [{
tag: 'p',
content: 'Double-click to edit a todo'
}, {
tag: 'p',
components: [{
tag: 'span',
content: 'Written by: '
}, {
tag: 'a',
attributes: {
href: 'http://randomjavascript.blogspot.com/'
},
content: 'David Posin'
}]
}, {
tag: 'p',
allowHtml: true,
content: 'Part of <a href="http://todomvc.com">TodoMVC</a>'
}]
});