addyosmani / backbone-fundamentals

:book: A creative-commons book on Backbone.js for beginners and advanced users alike

Home Page:http://addyosmani.github.io/backbone-fundamentals/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clarification of tagName

tibraev opened this issue · comments

Fundamentals -> Client-Side MVC - Backbone Style

TodoView is defined by extending Backbone.View and is instantiated with an associated Model. In our example, the render() method uses a template to construct the HTML for the Todo item which is placed inside an li element. Each call to render() will replace the content of the li element using the current Model data.

I ran example from book and I didn't see any <li> tag inside page sourse.
Could you please explain why we need tagName: 'li' if there's no any <li> tag.

2015-10-06_001939