1
0
Fork 0
forked from 0x2620/oxjs

add some docstrings

This commit is contained in:
j 2011-09-14 10:34:33 -04:00
commit 4768dcfe8e
5 changed files with 108 additions and 1 deletions

View file

@ -2091,16 +2091,28 @@ Ox.VideoPlayer = function(options, self) {
}
};
/*@
playInToOut <f> play in to out
() -> <o> play in to out
@*/
that.playInToOut = function() {
playInToOut();
return that;
};
/*@
togglePaused <f> toggle paused state
() -> <o> toggle paused state
@*/
that.togglePaused = function() {
togglePaused();
return that;
}
/*@
toggleMuted <f> toggle muted state
() -> <o> toggle muted state
@*/
that.toggleMuted = function() {
toggleMuted();
return that;