You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like recent versions of wkhtmltopdf don't include --redirect-delay any longer. Seems it has been replaced by --javascript-delay with slightly different semantics. I couldn't find a change-log entry on the wkhtmltopdf site, but the readme says:
--javascript-delay <msec> Wait some milliseconds for javascript finish (default 200) and makes no mention of the redirect-delay any longer. Fix is trivial, line 143 in wicked_pdf.rb becomes:
r +=make_options(options, [ :javascript_delay,
The text was updated successfully, but these errors were encountered:
Looks like recent versions of wkhtmltopdf don't include
--redirect-delay
any longer. Seems it has been replaced by--javascript-delay
with slightly different semantics. I couldn't find a change-log entry on the wkhtmltopdf site, but the readme says:--javascript-delay <msec> Wait some milliseconds for javascript finish (default 200)
and makes no mention of theredirect-delay
any longer. Fix is trivial, line 143 in wicked_pdf.rb becomes:r +=make_options(options, [ :javascript_delay,
The text was updated successfully, but these errors were encountered: