summaryrefslogtreecommitdiff
path: root/frontend/static/js/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/static/js/src')
-rw-r--r--frontend/static/js/src/soundcloud.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/static/js/src/soundcloud.js b/frontend/static/js/src/soundcloud.js
index 4061f99..e2f0435 100644
--- a/frontend/static/js/src/soundcloud.js
+++ b/frontend/static/js/src/soundcloud.js
@@ -40,7 +40,7 @@ var Soundcloud =
if (e.success === false)
return Soundcloud.error("failed to load")
d.warn("LOADED")
- Soundcloud.player = swfobject.getObjectById('soundcloud')
+ // Soundcloud.player = swfobject.getObjectById('soundcloud')
$("#ytscreen").css("z-index", -2)
// instead of raising events, the soundcloud swf calls it's js api directly
window.soundcloud = { onPlayerReady: Soundcloud.ready, onMediaEnd: Soundcloud.finish }
@@ -49,7 +49,7 @@ var Soundcloud =
{
d.warn("READY")
Soundcloud.playing = true
- Soundcloud.player = swfobject.getObjectById('soundcloud')
+ // Soundcloud.player = swfobject.getObjectById('soundcloud')
if (Soundcloud.player)
{
Soundcloud.player.api_play()
@@ -132,7 +132,7 @@ var Soundcloud =
{
d.warn("SOUNDCLOUD FINISH")
Soundcloud.playing = false
- swfobject.removeSWF("soundcloud")
+ // swfobject.removeSWF("soundcloud")
Player.finish()
},
load: function ()
@@ -143,7 +143,7 @@ var Soundcloud =
unload: function ()
{
d.warn("SOUNDCLOUD UNLOADED")
- swfobject.removeSWF("soundcloud")
+ // swfobject.removeSWF("soundcloud")
Soundcloud.loaded = false
Soundcloud.playing = false
},