Fixes a ReferenceError with Gecko in casper.js
Showing
1 changed file
with
3 additions
and
1 deletions
... | @@ -120,7 +120,9 @@ var Casper = function Casper(options) { | ... | @@ -120,7 +120,9 @@ var Casper = function Casper(options) { |
120 | timeout: null, | 120 | timeout: null, |
121 | verbose: false, | 121 | verbose: false, |
122 | retryTimeout: 20, | 122 | retryTimeout: 20, |
123 | waitTimeout: 5000 | 123 | waitTimeout: 5000, |
124 | clipRect : null, | ||
125 | viewportSize : null, | ||
124 | }; | 126 | }; |
125 | // options | 127 | // options |
126 | this.options = utils.mergeObjects(this.defaults, options); | 128 | this.options = utils.mergeObjects(this.defaults, options); | ... | ... |
-
Please register or sign in to post a comment