in src/main/resources/SLING-INF/etc/clientlibs/repl/script.js [82:93]
that.saveChanges = function (cb) {
if (isWriteable) {
$.ajax({
url: url,
type: 'PUT',
data: editor.getValue(),
contentType: 'plain/text',
success: reloadOutputCallback,
complete: cb
});
}
};