From 1354d17270961fff662d40f90521223f8fd0d73b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 18:59:10 +0400 Subject: update dojo to 1.7.3 --- lib/dijit/PopupMenuBarItem.js.uncompressed.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/dijit/PopupMenuBarItem.js.uncompressed.js (limited to 'lib/dijit/PopupMenuBarItem.js.uncompressed.js') diff --git a/lib/dijit/PopupMenuBarItem.js.uncompressed.js b/lib/dijit/PopupMenuBarItem.js.uncompressed.js new file mode 100644 index 000000000..e5edbd066 --- /dev/null +++ b/lib/dijit/PopupMenuBarItem.js.uncompressed.js @@ -0,0 +1,23 @@ +define("dijit/PopupMenuBarItem", [ + "dojo/_base/declare", // declare + "./PopupMenuItem", + "./MenuBarItem" +], function(declare, PopupMenuItem, MenuBarItem){ + + // module: + // dijit/PopupMenuBarItem + // summary: + // Item in a MenuBar like "File" or "Edit", that spawns a submenu when pressed (or hovered) + + var _MenuBarItemMixin = MenuBarItem._MenuBarItemMixin; + +/*===== + var PopupMenuItem = dijit.PopupMenuItem; + var _MenuBarItemMixin = dijit._MenuBarItemMixin; +=====*/ + + return declare("dijit.PopupMenuBarItem", [PopupMenuItem, _MenuBarItemMixin], { + // summary: + // Item in a MenuBar like "File" or "Edit", that spawns a submenu when pressed (or hovered) + }); +}); -- cgit v1.2.3-54-g00ecf