Skip to content

Commit

Permalink
only the IE pre 9 uses the window.flashId, the new versions should ha…
Browse files Browse the repository at this point in the history
…ve document.flashId
  • Loading branch information
Matas Petrikas committed Oct 25, 2011
1 parent 6e0ef30 commit 08a7a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soundcloud.player.api.js
Expand Up @@ -6,7 +6,7 @@
* http://www.opensource.org/licenses/mit-license.php
*/
(function(){
var isIE = (/msie/i).test(navigator.userAgent) && !(/opera/i).test(navigator.userAgent);
var isIE = (/msie (6|7|8)/i).test(navigator.userAgent) && !(/opera/i).test(navigator.userAgent);

var soundcloud = window.soundcloud = {
version: "0.1",
Expand Down

0 comments on commit 08a7a32

Please sign in to comment.