up690539 / gdata-samples

Automatically exported from code.google.com/p/gdata-samples
0 stars 0 forks source link

syntax error on line 244 shCore.uncompressed.js #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Line 244 in 
shCore.uncompressed.js

invalid flag

Currently written as:
    str = str.replace(/\n/gm, '&nbsp;<br>');

Should be:
    str = str.replace(/\n/g, '&nbsp;<br>');

Original issue reported on code.google.com by MrSta...@gmail.com on 6 Mar 2010 at 3:05