TNL-394: Fixed the confirmation message

This commit is contained in:
vkaracic
2015-07-24 08:17:57 +00:00
parent ac0d79628f
commit 1c6e139edc

View File

@@ -45,7 +45,7 @@ var StaffDebug = (function(){
{text: text},
{interpolate: /\{(.+?)\}/g}
)
$("#result_"+action.locationName).html(html);
$("#result_"+sanitized_string(action.locationName)).html(html);
},
error: function(request, status, error) {
var response_json;
@@ -67,7 +67,7 @@ var StaffDebug = (function(){
{text: text},
{interpolate: /\{(.+?)\}/g}
)
$("#result_"+action.locationName).html(html);
$("#result_"+sanitized_string(action.locationName)).html(html);
},
dataType: 'json'
});