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
|
|
@ -260,11 +260,19 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
}
|
||||
}
|
||||
|
||||
/*@
|
||||
toggleAnnotations <f> toggle annotations
|
||||
() -> <o> toggle visibility of annotations
|
||||
@*/
|
||||
that.toggleAnnotations = function() {
|
||||
that.$element.toggle(1);
|
||||
//that.toggleAnnotations(null, !self.options.showAnnotations);
|
||||
};
|
||||
|
||||
/*@
|
||||
toggleControls <f> toggle controls
|
||||
() -> <o> toggle visibility of controls
|
||||
@*/
|
||||
that.toggleControls = function() {
|
||||
self.$panel.toggle(1);
|
||||
//that.toggleControls(null, !self.options.showControls);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue