This commit is contained in:
Jeremy Ashkenas
2010-10-04 15:20:15 -04:00
parent 0cfa8d9d87
commit a6293310fd

View File

@@ -516,8 +516,8 @@
return child;
};
// `Backbone.request`...
Backbone.request = function(type, model, success, error) {
$.ajax({
url : model.url(),
type : type,
@@ -526,6 +526,6 @@
success : success,
error : error
});
}
};
})();