mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
01b49fede8
- 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);
|
|
};
|