1
0
Fork 0
forked from 0x2620/oxjs

more docs

This commit is contained in:
j 2011-05-16 12:49:48 +02:00
commit cc75e25415
42 changed files with 664 additions and 93 deletions

View file

@ -658,21 +658,21 @@ Ox.print(options)
};
/*@
removeItem <f>
removeItem <f> removeItem
@*/
that.removeItem = function() {
};
/*@
selectFirstItem <f>
selectFirstItem <f> selectFirstItem
@*/
that.selectFirstItem = function() {
selectNextItem();
};
/*@
showMenu <f>
showMenu <f> showMenu
() -> <f> Menu Object
@*/
that.showMenu = function() {
@ -722,7 +722,7 @@ Ox.print(options)
};
/*@
toggelMenu <f>
toggelMenu <f> toggleMenu
@*/
that.toggleMenu = function() {
that.is(':hidden') ? that.showMenu() : that.hideMenu();