source: Dev/branches/rest-dojo-ui/client/dijit/PopupMenuBarItem.js @ 274

Last change on this file since 274 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 643 bytes
Line 
1define([
2        "dojo/_base/declare", // declare
3        "./PopupMenuItem",
4        "./MenuBarItem"
5], function(declare, PopupMenuItem, MenuBarItem){
6
7        // module:
8        //              dijit/PopupMenuBarItem
9        // summary:
10        //              Item in a MenuBar like "File" or "Edit", that spawns a submenu when pressed (or hovered)
11
12        var _MenuBarItemMixin = MenuBarItem._MenuBarItemMixin;
13
14/*=====
15        var PopupMenuItem = dijit.PopupMenuItem;
16        var _MenuBarItemMixin = dijit._MenuBarItemMixin;
17=====*/
18
19        return declare("dijit.PopupMenuBarItem", [PopupMenuItem, _MenuBarItemMixin], {
20                // summary:
21                //              Item in a MenuBar like "File" or "Edit", that spawns a submenu when pressed (or hovered)
22        });
23});
Note: See TracBrowser for help on using the repository browser.