mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 05:45:56 +00:00
update dojo to 1.7.3
This commit is contained in:
23
lib/dijit/PopupMenuBarItem.js.uncompressed.js
Normal file
23
lib/dijit/PopupMenuBarItem.js.uncompressed.js
Normal file
@@ -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)
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user