From f0cfe83e3725f9a3928da97a6e3085e79cb25309 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 18 Mar 2013 10:26:24 +0400 Subject: upgrade dojo to 1.8.3 (refs #570) --- lib/dijit/MenuBarItem.js.uncompressed.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/dijit/MenuBarItem.js.uncompressed.js (limited to 'lib/dijit/MenuBarItem.js.uncompressed.js') diff --git a/lib/dijit/MenuBarItem.js.uncompressed.js b/lib/dijit/MenuBarItem.js.uncompressed.js new file mode 100644 index 000000000..74294b06c --- /dev/null +++ b/lib/dijit/MenuBarItem.js.uncompressed.js @@ -0,0 +1,28 @@ +require({cache:{ +'url:dijit/templates/MenuBarItem.html':"
\n\t\n
\n"}}); +define("dijit/MenuBarItem", [ + "dojo/_base/declare", // declare + "./MenuItem", + "dojo/text!./templates/MenuBarItem.html" +], function(declare, MenuItem, template){ + + // module: + // dijit/MenuBarItem + + var _MenuBarItemMixin = declare("dijit._MenuBarItemMixin", null, { + templateString: template, + + // Map widget attributes to DOMNode attributes. + _setIconClassAttr: null // cancel MenuItem setter because we don't have a place for an icon + }); + + var MenuBarItem = declare("dijit.MenuBarItem", [MenuItem, _MenuBarItemMixin], { + // summary: + // Item in a MenuBar that's clickable, and doesn't spawn a submenu when pressed (or hovered) + + }); + MenuBarItem._MenuBarItemMixin = _MenuBarItemMixin; // dojox.mobile is accessing this + + + return MenuBarItem; +}); -- cgit v1.2.3-54-g00ecf