Commit f8d8c24a f8d8c24adf0aad18a74cfe503e95469ee2dd611a by Matthew DuVall

Remove then from the arguments list for Casper.prototype.forward

1 parent 8638461d
...@@ -885,7 +885,7 @@ Casper.prototype.fillXPath = function fillXPath(formSelector, vals, submit) { ...@@ -885,7 +885,7 @@ Casper.prototype.fillXPath = function fillXPath(formSelector, vals, submit) {
885 * 885 *
886 * @return Casper 886 * @return Casper
887 */ 887 */
888 Casper.prototype.forward = function forward(then) { 888 Casper.prototype.forward = function forward() {
889 "use strict"; 889 "use strict";
890 this.checkStarted(); 890 this.checkStarted();
891 return this.then(function _step() { 891 return this.then(function _step() {
......