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.
17 lines
453 B
JavaScript
17 lines
453 B
JavaScript
define("dijit/PopupMenuBarItem", [
|
|
"dojo/_base/declare", // declare
|
|
"./PopupMenuItem",
|
|
"./MenuBarItem"
|
|
], function(declare, PopupMenuItem, MenuBarItem){
|
|
|
|
// module:
|
|
// dijit/PopupMenuBarItem
|
|
|
|
var _MenuBarItemMixin = MenuBarItem._MenuBarItemMixin;
|
|
|
|
return declare("dijit.PopupMenuBarItem", [PopupMenuItem, _MenuBarItemMixin], {
|
|
// summary:
|
|
// Item in a MenuBar like "File" or "Edit", that spawns a submenu when pressed (or hovered)
|
|
});
|
|
});
|