This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/utils/ajax-request.js
2015-07-16 21:15:51 -08:00

15 lines
390 B
JavaScript

import Ember from 'ember';
export default function ajaxRequest(url, options) {
return new Ember.RSVP.Promise(function(resolve, reject) {
options = options || {};
options.url = url;
options.success = function(data) {
resolve(data);
};
options.error = function(jqXHR, status, error) {
reject(jqXHR, status, error);
};
Ember.$.ajax(options);
});
}