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