Lines Matching refs:stack
182 * A stack of Y.Widget objects representing the current hierarchy of modal widgets presently displayed on the screen
309 * Performs events attaching/detaching, stack shifting and mask repositioning based on the visibility of the widget
315 var stack = WidgetModal.STACK,
322 Y.Array.each(stack, function(modal){
327 // push on top of stack
328 stack.unshift(this);
342 index = Y.Array.indexOf(stack, this);
344 // Remove modal widget from global stack.
345 stack.splice(index, 1);
351 if (stack.length) {
352 topModal = stack[0];
397 // of the global stack.
481 * This is done by checking the number of widgets currently on the stack.
496 * @param {Widget} nextElem The Y.Widget instance that will be visible in the stack once the current widget is closed.
530 * @param {Y.Widget} nextElem The Y.Widget instance that will be visible in the stack once the current widget is closed.