-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
Suggestion: Instead of
var xhr1 = makeXHR("foo.json",
function(txt) { foo = txt; success() },
function(err) { failure() }); // missing argument `err`?
var xhr2 = makeXHR("bar.json",
function(txt) { bar = txt; success() },
function(e) { failure(e) });
write
var xhr1 = makeXHR("foo.json",
function(txt) { foo = txt; success() },
failure);
var xhr2 = makeXHR("bar.json",
function(txt) { bar = txt; success() },
failure);
Metadata
Metadata
Assignees
Labels
No labels