diff options
author | ctrlaltca@gmail.com <> | 2011-05-10 20:39:33 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-05-10 20:39:33 +0000 |
commit | 3ef4e5b9dd7500fbd8125f8a6e382891bead9aca (patch) | |
tree | 5375ce46dac755291d1f2c7a71e0434249f677cb /framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js | |
parent | 65b4ddd7d3b9317585acf2f9189a3bd406dea4bf (diff) |
updated prototype to 1.7, scriptaculous to 1.9.0 and dropped json.js for json2.js. fixes #199 and 272
Diffstat (limited to 'framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js')
-rw-r--r-- | framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js b/framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js deleted file mode 100644 index e2487cde..00000000 --- a/framework/Web/Javascripts/source/scriptaculous-1.8.2/sound.js +++ /dev/null @@ -1,55 +0,0 @@ -// script.aculo.us sound.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008 - -// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) -// -// Based on code created by Jules Gravinese (http://www.webveteran.com/) -// -// script.aculo.us is freely distributable under the terms of an MIT-style license. -// For details, see the script.aculo.us web site: http://script.aculo.us/ - -Sound = { - tracks: {}, - _enabled: true, - template: - new Template('<embed style="height:0" id="sound_#{track}_#{id}" src="#{url}" loop="false" autostart="true" hidden="true"/>'), - enable: function(){ - Sound._enabled = true; - }, - disable: function(){ - Sound._enabled = false; - }, - play: function(url){ - if(!Sound._enabled) return; - var options = Object.extend({ - track: 'global', url: url, replace: false - }, arguments[1] || {}); - - if(options.replace && this.tracks[options.track]) { - $R(0, this.tracks[options.track].id).each(function(id){ - var sound = $('sound_'+options.track+'_'+id); - sound.Stop && sound.Stop(); - sound.remove(); - }); - this.tracks[options.track] = null; - } - - if(!this.tracks[options.track]) - this.tracks[options.track] = { id: 0 }; - else - this.tracks[options.track].id++; - - options.id = this.tracks[options.track].id; - $$('body')[0].insert( - Prototype.Browser.IE ? new Element('bgsound',{ - id: 'sound_'+options.track+'_'+options.id, - src: options.url, loop: 1, autostart: true - }) : Sound.template.evaluate(options)); - } -}; - -if(Prototype.Browser.Gecko && navigator.userAgent.indexOf("Win") > 0){ - if(navigator.plugins && $A(navigator.plugins).detect(function(p){ return p.name.indexOf('QuickTime') != -1 })) - Sound.template = new Template('<object id="sound_#{track}_#{id}" width="0" height="0" type="audio/mpeg" data="#{url}"/>'); - else - Sound.play = function(){}; -}
\ No newline at end of file |