Skip to content

Commit 29b60e5

Browse files
committed
Backbone.js 0.5.3
1 parent 44629da commit 29b60e5

File tree

5 files changed

+70
-46
lines changed

5 files changed

+70
-46
lines changed

backbone.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Backbone.js 0.5.2
1+
// Backbone.js 0.5.3
22
// (c) 2010 Jeremy Ashkenas, DocumentCloud Inc.
33
// Backbone may be freely distributed under the MIT license.
44
// For all details and documentation:
@@ -25,7 +25,7 @@
2525
}
2626

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

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

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

0 commit comments

Comments
 (0)