Merge branch 'ent-4667-aadcm-peta-la-ejecucion-de-tareas-programadas' into 'develop'
web2image control phantomjs flow See merge request artica/pandorafms!2739
This commit is contained in:
commit
596bd6a566
|
@ -61,6 +61,7 @@ page.onConsoleMessage = function(msg) {
|
|||
page.onError = function(msg) {
|
||||
console.log(msg);
|
||||
page.close();
|
||||
phantom.exit();
|
||||
};
|
||||
|
||||
page.onCallback = function(st) {
|
||||
|
@ -74,4 +75,9 @@ page.onCallback = function(st) {
|
|||
phantom.exit();
|
||||
};
|
||||
|
||||
page.open(url, "POST", post_data, function(status) {});
|
||||
page.open(url, "POST", post_data, function(status) {
|
||||
if (status == "fail") {
|
||||
console.out("Failed to generate chart.");
|
||||
phantom.exit();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue