Lines Matching defs:NodeMenuNav
32 * this.plug(Y.Plugin.NodeMenuNav); <br>
69 * this.plug(Y.Plugin.NodeMenuNav, { mouseOutHideDelay: 1000 });
345 * The NodeMenuNav class is a plugin for a Node instance. The class is used via
349 * @class NodeMenuNav
351 var NodeMenuNav = function () {
353 NodeMenuNav.superclass.constructor.apply(this, arguments);
357 NodeMenuNav.NAME = "nodeMenuNav";
358 NodeMenuNav.NS = "menuNav";
369 NodeMenuNav.SHIM_TEMPLATE_TITLE = "Menu Stacking Shim";
398 NodeMenuNav.SHIM_TEMPLATE = '<iframe frameborder="0" tabindex="-1" class="' +
400 '" title="' + NodeMenuNav.SHIM_TEMPLATE_TITLE +
404 NodeMenuNav.ATTRS = {
558 Y.extend(NodeMenuNav, Y.Plugin.Base, {
606 // actually moving the mouse. This bug affects NodeMenuNav because the
903 menu.appendChild(Y.Node.create(NodeMenuNav.SHIM_TEMPLATE));
1110 * @param {NodeMenuNav} menuNav Object representing the NodeMenuNav instance.
1130 * @param {NodeMenuNav} menuNav Object representing the NodeMenuNav instance.
2179 Y.Plugin.NodeMenuNav = NodeMenuNav;