diff options
author | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-10-15 07:13:50 +0000 |
---|---|---|
committer | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-10-15 07:13:50 +0000 |
commit | c1cc0286c6bbe1e7f053cd9c1ccf9632e956b525 (patch) | |
tree | 1a17bd83ee788e9d7a05b52d1e2028caeb660bcb | |
parent | 95a4464d0cfd155735e76b1881dce3e468972232 (diff) | |
download | backbonetutorials-c1cc0286c6bbe1e7f053cd9c1ccf9632e956b525.zip backbonetutorials-c1cc0286c6bbe1e7f053cd9c1ccf9632e956b525.tar.gz backbonetutorials-c1cc0286c6bbe1e7f053cd9c1ccf9632e956b525.tar.bz2 |
updated jsfiddle example
-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 5267abb..4166a90 100644 --- a/_posts/2011-01-28-what-is-a-view.md +++ b/_posts/2011-01-28-what-is-a-view.md @@ -11,7 +11,7 @@ Backbone views are used to reflect what your applications' data models look like We will be using [jQuery 1.5](http://jquery.com/) as our DOM manipulator. It's possible to use other libraries such as [MooTools](http://mootools.net/) or [Sizzle](http://sizzlejs.com/), but official Backbone.js documentation endorses jQuery. Backbone.View events may not work with other libraries other than jQuery. -For the purposes of this demonstration, we will be implementing a search box. [A live example](http://jsfiddle.net/thomas/C9wew/6) can be found on jsFiddle. +For the purposes of this demonstration, we will be implementing a search box. [A live example](http://jsfiddle.net/tBS4X/1/) can be found on jsFiddle. {% highlight javascript %} SearchView = Backbone.View.extend({ |