Lines Matching refs:NodeMenuNav
34 * this.plug(Y.Plugin.NodeMenuNav); <br>
71 * this.plug(Y.Plugin.NodeMenuNav, { mouseOutHideDelay: 1000 });
347 * The NodeMenuNav class is a plugin for a Node instance. The class is used via
351 * @class NodeMenuNav
353 var NodeMenuNav = function () {
355 NodeMenuNav.superclass.constructor.apply(this, arguments);
359 NodeMenuNav.NAME = "nodeMenuNav";
360 NodeMenuNav.NS = "menuNav";
371 NodeMenuNav.SHIM_TEMPLATE_TITLE = "Menu Stacking Shim";
400 NodeMenuNav.SHIM_TEMPLATE = '<iframe frameborder="0" tabindex="-1" class="' +
402 '" title="' + NodeMenuNav.SHIM_TEMPLATE_TITLE +
406 NodeMenuNav.ATTRS = {
560 Y.extend(NodeMenuNav, Y.Plugin.Base, {
608 // actually moving the mouse. This bug affects NodeMenuNav because the
905 menu.appendChild(Y.Node.create(NodeMenuNav.SHIM_TEMPLATE));
1112 * @param {NodeMenuNav} menuNav Object representing the NodeMenuNav instance.
1132 * @param {NodeMenuNav} menuNav Object representing the NodeMenuNav instance.
2181 Y.Plugin.NodeMenuNav = NodeMenuNav;