mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
- Moved post route under posts resource - Changed ajax to use ic.ajax.request instead of ic.ajax.raw
4 lines
113 B
JavaScript
4 lines
113 B
JavaScript
/* global ic */
|
|
export default window.ajax = function () {
|
|
return ic.ajax.request.apply(null, arguments);
|
|
};
|