Skip to content

Commit

Permalink
Backbone.js 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Aug 9, 2011
1 parent 44629da commit 29b60e5
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 46 deletions.
6 changes: 3 additions & 3 deletions backbone.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Backbone.js 0.5.2
// Backbone.js 0.5.3
// (c) 2010 Jeremy Ashkenas, DocumentCloud Inc.
// Backbone may be freely distributed under the MIT license.
// For all details and documentation:
Expand All @@ -25,7 +25,7 @@
}

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

// Require Underscore, if we're on the server, and it's not already present.
var _ = root._;
Expand Down Expand Up @@ -1074,7 +1074,7 @@
}

// Don't process data on a non-GET request.
if (params.type !== 'GET' && ! Backbone.emulateJSON) {
if (params.type !== 'GET' && !Backbone.emulateJSON) {
params.processData = false;
}

Expand Down
Loading

0 comments on commit 29b60e5

Please sign in to comment.