in reply to Re^3: MozRepl/Client.pm does not support firefox 7.0
in thread MozRepl/Client.pm does not support firefox 7.0
Ouch! I'm sorry - I encountered the same issue and locally already fixed it without bumping the MozRepl::RemoteObject version and without releasing it to CPAN.
If you're in a bind, the current version from Github should make "everything just work again", even with Firefox 7.
The (ugly) change is that
eval "function() {}";
does not return an anonymous function in Javascript (on Firefox 7) anymore. The change is to use:
eval "expr_=function() {}; expr";
Update: Now released as v0.28 on CPAN.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: MozRepl/Client.pm does not support firefox 7.0
by Anonymous Monk on Sep 23, 2011 at 14:16 UTC | |
by Corion (Patriarch) on Sep 23, 2011 at 15:15 UTC |