Overlay.js revision d688dc20f16a5670ba8ce729826ad65bc50160a8
6675N/A/**
6675N/A * Provides a basic Overlay widget, with Standard Module content support. The Overlay widget
6675N/A * provides Page XY positioning support, alignment and centering support along with basic
6675N/A * stackable support (z-index and shimming).
6675N/A *
6675N/A * @module overlay
6675N/A */
6675N/A
6675N/A/**
6675N/A * A basic Overlay Widget, which can be positioned based on Page XY co-ordinates and is stackable (z-index support).
6675N/A * It also provides alignment and centering support and uses a standard module format for it's content, with header,
6675N/A * body and footer section support.
6675N/A *
6675N/A * @class Overlay
6675N/A * @constructor
6675N/A * @extends Widget
6675N/A * @uses WidgetPosition
6675N/A * @uses WidgetStack
6675N/A * @uses WidgetPositionExt
6675N/A * @uses WidgetStdMod
6675N/A * @param {Object} object The user configuration for the instance.
6675N/A */
6675N/AY.Overlay = Y.Base.build("overlay", Y.Widget, [Y.WidgetPosition, Y.WidgetStack, Y.WidgetPositionExt, Y.WidgetStdMod]);
6675N/A