PCHD#35087 Waarschuwing bij gelijktijdig editen notities

svn path=/Website/trunk/; revision=29625
This commit is contained in:
Erik Groener
2016-06-02 09:26:12 +00:00
parent ca7b7d2e76
commit 63105586f2

View File

@@ -255,7 +255,7 @@ var sql = "";
var url = $("form[name=note_edit]")[0].action + "&note_key="+$("#note_key").val(); var url = $("form[name=note_edit]")[0].action + "&note_key="+$("#note_key").val();
$.post(url, $.post(url,
$("form[name=note_edit]").serialize(), $("form[name=note_edit]").serialize(),
note_submit_callback, McltCallbackAndThen(note_submit_callback),
"json"); "json");
return false; return false;
} }
@@ -263,8 +263,6 @@ var sql = "";
{ {
if (data.success) if (data.success)
{ {
if (data.warning)
alert(data.warning);
jqToast(L("lcl_mobile_data_saved")); jqToast(L("lcl_mobile_data_saved"));
window.location.href = "<%=back_reference()%>"; window.location.href = "<%=back_reference()%>";
} }