Created
November 23, 2010 13:50
-
-
Save watson/711785 to your computer and use it in GitHub Desktop.
Showing issue with using more than one instance of s3-swf-upload object on the same webpage. In that case only the last Flash object gets shown. For details see bug report https://github.com/nathancolgate/s3-swf-upload-plugin/issues/#issue/21 - For this t
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<script src="/javascripts/s3_upload.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
var s3_swf_1_object = s3_swf_init('s3_swf_1', { buttonWidth: 100, | |
buttonHeight: 30, | |
buttonUpPath: '/flash/s3_up_button.gif', | |
buttonOverPath: '/flash/s3_over_button.gif', | |
buttonDownPath: '/flash/s3_down_button.gif' }); | |
var s3_swf_2_object = s3_swf_init('s3_swf_2', { buttonWidth: 100, | |
buttonHeight: 30, | |
buttonUpPath: '/flash/s3_up_button.gif', | |
buttonOverPath: '/flash/s3_over_button.gif', | |
buttonDownPath: '/flash/s3_down_button.gif' }); | |
</script> | |
</head> | |
<body> | |
<div id="s3_swf_1"> | |
Please <a href="http://www.adobe.com/go/getflashplayer">Update</a> your Flash Player to Flash v9.0.0 or higher... | |
</div> | |
<div id="s3_swf_2"> | |
Please <a href="http://www.adobe.com/go/getflashplayer">Update</a> your Flash Player to Flash v9.0.0 or higher... | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment