liuzhe02 / bigbluebutton

Automatically exported from code.google.com/p/bigbluebutton
0 stars 0 forks source link

Investigate disabling console.log in bbb_deskshare.js on IE #1830

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Looks like IE has troubles launching the desktop share applet when the console 
is not visible.  

See

  https://groups.google.com/d/msg/bigbluebutton-dev/jzHDKq_ZxUI/CW9ogG6akMoJ

there is a reference to stackoverflow on how to detect the availability of a 
console and, if not available, stub out the commands to 

if (!window.console) window.console = {};
if (!window.console.log) window.console.log = function () { };

Investigate adding the above to bbb_deskshare.js and testing on browsers.

Original issue reported on code.google.com by ffdixon@gmail.com on 18 Nov 2014 at 11:35

GoogleCodeExporter commented 9 years ago

Original comment by ffdixon@gmail.com on 1 Dec 2014 at 5:05

GoogleCodeExporter commented 9 years ago
Fixed. See

  https://github.com/bigbluebutton/bigbluebutton/pull/455

Original comment by ffdixon@gmail.com on 4 Dec 2014 at 11:38