Changeset 1269


Ignore:
Timestamp:
09/07/10 14:46:36 (3 years ago)
Author:
pablo
Message:

Minor internal API tweak for volume / mute

Location:
trunk/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/js/bin-debug/jwplayer.js

    r1266 r1269  
    514514                // Player Public Methods 
    515515                setFullscreen: function(fullscreen) { this.callInternal("jwSetFullscreen", fullscreen); return this;}, 
    516                 setMute: function(mute) { this.callInternal("jwMute", mute); return this; }, 
     516                setMute: function(mute) { this.callInternal("jwSetMute", mute); return this; }, 
    517517                lock: function() { return this; }, 
    518518                unlock: function() { return this; }, 
     
    554554                stop: function() { this.callInternal("jwStop"); return this; },  
    555555                seek: function(position) { this.callInternal("jwSeek", position); return this; }, 
    556                 setVolume: function(volume) { this.callInternal("jwVolume", volume); return this; }, 
     556                setVolume: function(volume) { this.callInternal("jwSetVolume", volume); return this; }, 
    557557                 
    558558                // Player Events 
  • trunk/js/src/api/jwplayer.api.js

    r1266 r1269  
    212212                // Player Public Methods 
    213213                setFullscreen: function(fullscreen) { this.callInternal("jwSetFullscreen", fullscreen); return this;}, 
    214                 setMute: function(mute) { this.callInternal("jwMute", mute); return this; }, 
     214                setMute: function(mute) { this.callInternal("jwSetMute", mute); return this; }, 
    215215                lock: function() { return this; }, 
    216216                unlock: function() { return this; }, 
     
    252252                stop: function() { this.callInternal("jwStop"); return this; },  
    253253                seek: function(position) { this.callInternal("jwSeek", position); return this; }, 
    254                 setVolume: function(volume) { this.callInternal("jwVolume", volume); return this; }, 
     254                setVolume: function(volume) { this.callInternal("jwSetVolume", volume); return this; }, 
    255255                 
    256256                // Player Events 
Note: See TracChangeset for help on using the changeset viewer.