forked from 0x2620/oxjs
add some docstrings
This commit is contained in:
parent
204f083e98
commit
4768dcfe8e
5 changed files with 108 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue