Added #27 to albums

This commit is contained in:
tidusjar 2016-04-25 17:03:03 +01:00
commit 230fa5ba3b
2 changed files with 13 additions and 3 deletions

View file

@ -142,6 +142,9 @@ $(function () {
var type = $form.prop('method');
var url = $form.prop('action');
var data = $form.serialize();
var $notify = $('#notifyUser').is(':checked');
data = data + "&notify=" + $notify;
sendRequestAjax(data, type, url, buttonId);
});