In my code, I have something like:
A = Backbone.Model.extend({
// url : "http://localhost:3000/a"
url : "https://localhost:3000/a"
});
var a = new A();
a.save();
When I use the http url, everything is fine and dandy; when I use the https url, however, I get the following error
{readyState : 0, responseText : "", status : 0, statusText : ""}
and firebug "net" tab shows 0 requests
Adding onto the weirdness, when I use fetch on two other models, both give "aborted" error but firebug shows requests made and failed, rather than 0 requests as above.