Changes between Version 11 and Version 12 of Ticket #3772
- Timestamp:
- May 30, 2011, 1:27:46 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3772 – Description
v11 v12 18 18 tooltip - show[[BR]] 19 19 tooltip - hide[[BR]] 20 21 ---- 22 23 Proposed API: 24 ._show() and ._hide() methods on $.Widget. 25 26 {{{ 27 show: null // .show() 28 show: true // .fadeIn() 29 show: number // .fadeIn( number ) 30 show: string (effect name) // .show( effectName ) 31 show: string (core method) // .coreMethod() 32 show: object (effect) // .show( options ) 33 show: object (core method) // .coreMethod( o.duration, o.easing ) 34 }}}