Added support for page opening actions following finished operations.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2428 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2012-01-25 02:09:08 +00:00
parent 794629eee6
commit 0de40ad0a2

View File

@ -229,6 +229,9 @@ ProcessPanel.prototype._perform = function(jobs) {
} catch (e) {
//
}
} else if (job.action == "open") {
var url = 'http://' + window.location.host + ModuleWirings[job.module] + job.path + '?' + job.params;
window.open(url, 'new');
}
}
};