Browse Source

Update client_mustache.html

Maurits van der Schee 9 years ago
parent
commit
fd47ab5d32
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      examples/client_mustache.html

+ 1
- 1
examples/client_mustache.html View File

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

Loading…
Cancel
Save