Update client_mustache.html

This commit is contained in:
Maurits van der Schee 2016-04-09 13:46:00 +02:00
commit fd47ab5d32

View file

@ -32,7 +32,7 @@ function PostList(element, template) {
};
self.delete = function() {
var id = $(this).attr('key');
if (confirm("Deleting #"+id+". Are you sure?")) {
if (confirm("Deleting #"+id+". Continue?")) {
$.ajax({url:url+'/'+id, type: 'DELETE', success:self.update});
}
};