Skip to content

Instantly share code, notes, and snippets.

@LuisRBarreras
Created August 31, 2017 21:26
Show Gist options
  • Save LuisRBarreras/65c8ca48d9fad5e4ebe5f559289c934b to your computer and use it in GitHub Desktop.
Save LuisRBarreras/65c8ca48d9fad5e4ebe5f559289c934b to your computer and use it in GitHub Desktop.
var requestObject = function(options){
function ajax() {
return $.ajax({
method: method,
url: options.url,
data: data,
dataType: 'json'
}).done(options.doneCallback).fail(options.failCallback);
};
return {ajax: ajax};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment