lxzliuxinzhu / syntaxhighlighter

Automatically exported from code.google.com/p/syntaxhighlighter
GNU General Public License v3.0
0 stars 0 forks source link

Flash clipboard feature not working in SVN version (includes fix) #103

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Run the script on FF try to use the flash clipboard feature.
2. Observe that you get an error.

Fix this by changing the if statement for the flashcopier:

if (flashcopier === null)

must read:

if (flashcopier == null)

Then it works.

Original issue reported on code.google.com by spo...@gmail.com on 2 Sep 2008 at 3:22