Commit 3f913c03 by Jansa Jose

change in js

parent afaf3175
......@@ -1131,8 +1131,12 @@ jQuery('[id="showBookinDetails"]').on('click',function() {
imgCount = 0,
issueHtml = '',
optionalHtml = '',
optional_data = jQuery.parseJSON(booking_data['custom_issue_data']),
issues_selected = jQuery.parseJSON(booking_data['issues_selected']);
optional_data = jQuery.parseJSON(booking_data['custom_issue_data']);
var issues_selected = '';
if(booking_data['issues_selected'] != '' && booking_data['issues_selected'] != null && booking_data['issues_selected'] != undefined && booking_data['issues_selected'] != 'null' && booking_data['issues_selected'] != 'undefined'){
issues_selected = jQuery.parseJSON(booking_data['issues_selected'])
}
if(issues_selected != ''){
var comma = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment