diff options
author | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-04-27 08:55:13 +1000 |
---|---|---|
committer | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-04-27 08:55:13 +1000 |
commit | df12f56ecee20072db3a1564d03bd86ee8e08950 (patch) | |
tree | 18c955756ed4aa0a65366c3b4ab707dd166fba1f /_posts | |
parent | 44053cf98dcb048fa7b7a3a20e2a79cc06bbcd69 (diff) | |
download | backbonetutorials-df12f56ecee20072db3a1564d03bd86ee8e08950.zip backbonetutorials-df12f56ecee20072db3a1564d03bd86ee8e08950.tar.gz backbonetutorials-df12f56ecee20072db3a1564d03bd86ee8e08950.tar.bz2 |
updated
Diffstat (limited to '_posts')
-rw-r--r-- | _posts/2011-01-28-what-is-a-view.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2011-01-28-what-is-a-view.md b/_posts/2011-01-28-what-is-a-view.md index f534c8c..5e0fcef 100644 --- a/_posts/2011-01-28-what-is-a-view.md +++ b/_posts/2011-01-28-what-is-a-view.md @@ -25,7 +25,7 @@ For the purposes of this demonstration, we will be implementing a search box. [A var search_view = new SearchView; {% endhighlight %} -#### The "el" property +## The "el" property The "el" property references the DOM object created in the browser. Every Backbone.js view has an "el" property, and if it not defined, Backbone.js will construct its own, which is an empty div element. |