Created
August 31, 2017 21:26
-
-
Save LuisRBarreras/65c8ca48d9fad5e4ebe5f559289c934b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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