|
@@ -122,7 +122,7 @@ function retrievePhrData() {
|
|
|
|
|
|
$("#phrDataTable").html(html);
|
|
|
},
|
|
|
- error : function(){
|
|
|
+ error : function(error){
|
|
|
alert(error.message);
|
|
|
}
|
|
|
}).done( function(){
|
|
@@ -270,7 +270,7 @@ function createSymptomData(symptomObject) {
|
|
|
|
|
|
retrieveSymptomData();
|
|
|
},
|
|
|
- error : function(){
|
|
|
+ error : function(error){
|
|
|
alert(error.message);
|
|
|
}
|
|
|
}).done( function(){
|
|
@@ -320,7 +320,7 @@ function retrieveSymptomData() {
|
|
|
|
|
|
$("#symptomDataTable > tbody").html(html);
|
|
|
},
|
|
|
- error : function(){
|
|
|
+ error : function(error){
|
|
|
alert(error.message);
|
|
|
}
|
|
|
}).done( function(){
|
|
@@ -359,7 +359,7 @@ function createMemoData(memoContent) {
|
|
|
|
|
|
retrieveMemoData();
|
|
|
},
|
|
|
- error : function(){
|
|
|
+ error : function(error){
|
|
|
alert(error.message);
|
|
|
}
|
|
|
}).done( function(){
|
|
@@ -390,7 +390,7 @@ function retrieveMemoData() {
|
|
|
|
|
|
$("#memoDataTable > tbody").html(html);
|
|
|
},
|
|
|
- error : function(){
|
|
|
+ error : function(error){
|
|
|
alert(error.message);
|
|
|
}
|
|
|
}).done( function(){
|