Changeset 1269
- Timestamp:
- 09/07/10 14:46:36 (3 years ago)
- Location:
- trunk/js
- Files:
-
- 2 edited
-
bin-debug/jwplayer.js (modified) (2 diffs)
-
src/api/jwplayer.api.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/js/bin-debug/jwplayer.js
r1266 r1269 514 514 // Player Public Methods 515 515 setFullscreen: function(fullscreen) { this.callInternal("jwSetFullscreen", fullscreen); return this;}, 516 setMute: function(mute) { this.callInternal("jw Mute", mute); return this; },516 setMute: function(mute) { this.callInternal("jwSetMute", mute); return this; }, 517 517 lock: function() { return this; }, 518 518 unlock: function() { return this; }, … … 554 554 stop: function() { this.callInternal("jwStop"); return this; }, 555 555 seek: function(position) { this.callInternal("jwSeek", position); return this; }, 556 setVolume: function(volume) { this.callInternal("jw Volume", volume); return this; },556 setVolume: function(volume) { this.callInternal("jwSetVolume", volume); return this; }, 557 557 558 558 // Player Events -
trunk/js/src/api/jwplayer.api.js
r1266 r1269 212 212 // Player Public Methods 213 213 setFullscreen: function(fullscreen) { this.callInternal("jwSetFullscreen", fullscreen); return this;}, 214 setMute: function(mute) { this.callInternal("jw Mute", mute); return this; },214 setMute: function(mute) { this.callInternal("jwSetMute", mute); return this; }, 215 215 lock: function() { return this; }, 216 216 unlock: function() { return this; }, … … 252 252 stop: function() { this.callInternal("jwStop"); return this; }, 253 253 seek: function(position) { this.callInternal("jwSeek", position); return this; }, 254 setVolume: function(volume) { this.callInternal("jw Volume", volume); return this; },254 setVolume: function(volume) { this.callInternal("jwSetVolume", volume); return this; }, 255 255 256 256 // Player Events
Note: See TracChangeset
for help on using the changeset viewer.
