2017-08-06 2 views

Antwort

2

Dies ist an mehreren Stellen in the documentation abgedeckt. Um es zu wiederholen: Ihr location.reload Anruf im Callback sein muss:

bootbox.alert("Successfully created shipment. \n Transaction Hash is:" + data, function(){ window.location.reload(); }); 

oder

bootbox.alert({ 
    message: "Successfully created shipment. \n Transaction Hash is:" + data), 
    callback: function(){ 
     window.location.reload(); 
    } 
}); 
Verwandte Themen