Skip to content

Commit

Permalink
Backbone.js 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Nov 23, 2010
1 parent 33232f5 commit 356664a
Show file tree
Hide file tree
Showing 7 changed files with 148 additions and 133 deletions.
45 changes: 23 additions & 22 deletions backbone-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions backbone.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Backbone.js 0.3.1
// Backbone.js 0.3.2
// (c) 2010 Jeremy Ashkenas, DocumentCloud Inc.
// Backbone may be freely distributed under the MIT license.
// For all details and documentation:
Expand All @@ -19,7 +19,7 @@
}

// Current version of the library. Keep in sync with `package.json`.
Backbone.VERSION = '0.3.1';
Backbone.VERSION = '0.3.2';

// Require Underscore, if we're on the server, and it's not already present.
var _ = this._;
Expand Down
206 changes: 106 additions & 100 deletions docs/backbone.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/docco.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ p {
margin: 0 0 15px 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 40px 0 15px 0;
margin: 0px 0 15px 0;
}
h3, h4, h5, h6 {
margin-top: 20px;
h1 {
margin-top: 40px;
}
#container {
position: relative;
}
#background {
position: fixed;
top: 0; left: 575px; right: 0; bottom: 0;
top: 0; left: 525px; right: 0; bottom: 0;
background: #f5f5ff;
border-left: 1px solid #e5e5ee;
z-index: -1;
Expand Down
2 changes: 1 addition & 1 deletion docs/jsl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
+missing_break_for_last_case # missing break statement for last case in switch
-comparison_type_conv # comparisons against null, 0, true, false, or an empty string allowing implicit type conversion (use === or !==)
-inc_dec_within_stmt # increment (++) and decrement (--) operators used as part of greater statement
+useless_void # use of the void type may be unnecessary (void is always undefined)
-useless_void # use of the void type may be unnecessary (void is always undefined)
+multiple_plus_minus # unknown order of operations for successive plus (e.g. x+++y) or minus (e.g. x---y) signs
+use_of_label # use of label
-block_without_braces # block statement without curly braces
Expand Down
14 changes: 11 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Backbone.js <span class="version">(0.3.1)</span>
Backbone.js <span class="version">(0.3.2)</span>
</a>

<a class="toc_title" href="#Introduction">
Expand Down Expand Up @@ -310,11 +310,11 @@ <h2 id="downloads">

<table>
<tr>
<td><a href="backbone.js">Development Version (0.3.1)</a></td>
<td><a href="backbone.js">Development Version (0.3.2)</a></td>
<td><i>33kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="backbone-min.js">Production Version (0.3.1)</a></td>
<td><a href="backbone-min.js">Production Version (0.3.2)</a></td>
<td><i>3.7kb, Packed and Gzipped</i></td>
</tr>
</table>
Expand Down Expand Up @@ -1816,6 +1816,14 @@ <h2 id="examples">Examples</h2>

<h2 id="changelog">Change Log</h2>

<p>
<b class="header">0.3.2</b> &mdash; <small><i>Nov 23, 2010</i></small><br />
Bugfix for IE7 + iframe-based "hashchange" events. <tt>sync</tt> may now be
overridden on a per-model, or per-collection basis. Fixed recursion error
when calling <tt>save</tt> with no changed attributes, within a
<tt>"change"</tt> event.
</p>

<p>
<b class="header">0.3.1</b> &mdash; <small><i>Nov 15, 2010</i></small><br />
All <tt>"add"</tt> and <tt>"remove"</tt> events are now sent through the
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
},
"lib" : ".",
"main" : "backbone.js",
"version" : "0.3.1"
"version" : "0.3.2"
}

0 comments on commit 356664a

Please sign in to comment.