scinote-web/app/assets/javascripts/protocols/edit.js
2016-07-21 13:11:15 +02:00

20 lines
511 B
JavaScript

$("#content-wrapper")
.on(
"ajax:success",
function(e, data) {
if ($(e.target).is("[data-role='edit-step-form'], [data-role='new-step-form']")) {
// Get the updated_at URL
var url = $("[data-role='updated-at-label-url']").attr("data-url");
// Fetch new updated at label
$.ajax({
url: url,
type: "GET",
dataType: "json",
success: function (data2) {
$("[data-role='updated-at-refresh']").html(data2.html);
}
});
}
}
);