' + body + '
'; } else { message = ''; } var fnCallback = window[action]; bootbox.alert({ size:'small', closeButton: false, title:title, message: message, className: className, buttons: {ok: {label: buttonLabel, className: 'btn btn-primary single'} }, callback: fnCallback}); } function confirmPopup(title, body, buttonLabel1, buttonLabel2, action1, action2, category, icon, image, noClass, yesClass) { if(icon == '' && image == '') { switch(category) { case 'error': icon = 'icon-Cancel color-error'; break; case 'information': icon = 'icon-Information color-info'; break; case 'success': icon = 'icon-feedback_icon_success color-success'; break; case 'warning': icon = 'icon-Alert color-warning'; break; } } var message = ''; if(image != '') { message = ''; } else { message = ''; } bootbox.dialog({ size: 'small', closeButton: false, title: title, message: message, buttons:{ submit:{ label: buttonLabel2, className: "btn btn-primary multiple " + yesClass, callback: action2 }, cancel:{ label: buttonLabel1, className: "btn btn-secondary multiple " + noClass, callback: action1 } } }); } var _generic_error = {"title":"Something went wrong","body":"An error has occurred, please try again later","buttons":"OK","category":"error","icon":"","image":""};