API Docs for: 3.10.3
Show:

File: overlay/js/Overlay.js

  1. /**
  2. * Provides a basic Overlay widget, with Standard Module content support. The Overlay widget
  3. * provides Page XY positioning support, alignment and centering support along with basic
  4. * stackable support (z-index and shimming).
  5. *
  6. * @module overlay
  7. */
  8.  
  9. /**
  10. * A basic Overlay Widget, which can be positioned based on Page XY co-ordinates and is stackable (z-index support).
  11. * It also provides alignment and centering support and uses a standard module format for it's content, with header,
  12. * body and footer section support.
  13. *
  14. * @class Overlay
  15. * @constructor
  16. * @extends Widget
  17. * @uses WidgetStdMod
  18. * @uses WidgetPosition
  19. * @uses WidgetStack
  20. * @uses WidgetPositionAlign
  21. * @uses WidgetPositionConstrain
  22. * @param {Object} object The user configuration for the instance.
  23. */
  24. Y.Overlay = Y.Base.create("overlay", Y.Widget, [Y.WidgetStdMod, Y.WidgetPosition, Y.WidgetStack, Y.WidgetPositionAlign, Y.WidgetPositionConstrain]);
  25.