Ghost/core/client/utils/ajax.js
Taras Mankovski a89f38c165 Minor refactoring of the routers:
- Moved post route under posts resource
- Changed ajax to use ic.ajax.request instead of ic.ajax.raw
2014-03-07 14:01:27 +00:00

5 lines
113 B
JavaScript

/* global ic */
export default window.ajax = function () {
return ic.ajax.request.apply(null, arguments);
};