2
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
3
Code licensed under the BSD License:
4
http://developer.yahoo.net/yui/license.txt
7
YUI.add('overlay', function(Y) {
10
* Provides a basic Overlay widget, with Standard Module content support. The Overlay widget
11
* provides Page XY positioning support, alignment and centering support along with basic
12
* stackable support (z-index and shimming).
18
* A basic Overlay Widget, which can be positioned based on Page XY co-ordinates and is stackable (z-index support).
19
* It also provides alignment and centering support and uses a standard module format for it's content, with header,
20
* body and footer section support.
25
* @uses WidgetPosition
27
* @uses WidgetPositionExt
29
* @param {Object} object The user configuration for the instance.
31
Y.Overlay = Y.Base.build(Y.Widget, [Y.WidgetPosition, Y.WidgetStack, Y.WidgetPositionExt, Y.WidgetStdMod]);
32
Y.Overlay.NAME = "overlay";
36
}, '3.0.0pr2' ,{requires:['widget', 'widget-position', 'widget-stack', 'widget-position-ext', 'widget-stdmod']});