You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/externals/dojo/dijit/MenuBarItem.js

18 lines
568 B
JavaScript

dojo.provide("dijit.MenuBarItem");
dojo.require("dijit.MenuItem");
dojo.declare("dijit._MenuBarItemMixin", null, {
templatePath: dojo.moduleUrl("dijit", "templates/MenuBarItem.html"),
// overriding attributeMap because we don't have icon
attributeMap: dojo.delegate(dijit._Widget.prototype.attributeMap, {
label: { node: "containerNode", type: "innerHTML" }
})
});
dojo.declare("dijit.MenuBarItem", [dijit.MenuItem, dijit._MenuBarItemMixin], {
// summary:
// Item in a MenuBar that's clickable, and doesn't spawn a submenu when pressed (or hovered)
});