whatever_action = function() {
return '{ "success" : true}';
};
In an ideal situation, we should allow for actions to return anything up to the browser, if possible. This gives end developers the full flexibility to custom format strings, etc to be bubbled up to the browser.
whatever_action = function() {
return '{ "success" : true}';
};
In an ideal situation, we should allow for actions to return anything up to the browser, if possible. This gives end developers the full flexibility to custom format strings, etc to be bubbled up to the browser.