mozrepl icon indicating copy to clipboard operation
mozrepl copied to clipboard

quit does not quit

Open tjim opened this issue 15 years ago • 0 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(); });

tjim avatar Oct 12 '10 14:10 tjim