Merge branch 'master' of github.com:documentcloud/backbone

This commit is contained in:
Jeremy Ashkenas
2012-05-02 11:33:42 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ end
desc "test the CoffeeScript integration"
task :test do
check 'coffee', 'CoffeeScript', 'https://github.com/jashkenas/coffee-script.git'
check 'coffee', 'CoffeeScript', 'http://coffeescript.org/'
system "coffee test/*.coffee"
end

View File

@@ -809,7 +809,7 @@
// Proxy to _'s chain. Can't be proxied the same way the rest of the
// underscore methods are proxied because it relies on the underscore
// constructor.
chain: function () {
chain: function() {
return _(this.models).chain();
},
@@ -1290,7 +1290,7 @@
});
// The self-propagating extend function that Backbone classes use.
var extend = function (protoProps, classProps) {
var extend = function(protoProps, classProps) {
var child = inherits(this, protoProps, classProps);
child.extend = this.extend;
return child;