bard / mozrepl

Remotely control Firefox and other Mozilla apps with JavaScript

Home Page:https://github.com/bard/mozrepl/wiki/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quit does not quit

tjim opened this issue · comments

See http://github.com/bard/mozrepl/blob/master/chrome/content/server.js

Line 85:

        function(session) { session.quit; });

should be

        function(session) { session.quit(); });