]> git.wh0rd.org - tt-rss.git/blobdiff - lib/dijit/MenuBar.js
lib: Upgrade Dojo and Dijit from 1.8.3 to 1.12.1
[tt-rss.git] / lib / dijit / MenuBar.js
index 06d236b66e35cbc10c7db0221abe909430dccf9e..5e937fc0fbbdcfe00420d2ffc4f8ec5e5a632535 100644 (file)
@@ -1,77 +1,2 @@
-/*
-       Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
-       Available via Academic Free License >= 2.1 OR the modified BSD license.
-       see: http://dojotoolkit.org/license for details
-*/
-
-
-if(!dojo._hasResource["dijit.MenuBar"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dijit.MenuBar"] = true;
-dojo.provide("dijit.MenuBar");
-dojo.require("dijit.Menu");
-
-
-dojo.declare("dijit.MenuBar", dijit._MenuBase, {
-       // summary:
-       //              A menu bar, listing menu choices horizontally, like the "File" menu in most desktop applications
-
-       templateString: dojo.cache("dijit", "templates/MenuBar.html", "<div class=\"dijitMenuBar dijitMenuPassive\" dojoAttachPoint=\"containerNode\"  role=\"menubar\" tabIndex=\"${tabIndex}\" dojoAttachEvent=\"onkeypress: _onKeyPress\"></div>\n"),
-
-       baseClass: "dijitMenuBar",
-
-       // _isMenuBar: [protected] Boolean
-       //              This is a MenuBar widget, not a (vertical) Menu widget.
-       _isMenuBar: true,
-
-       postCreate: function(){
-               var k = dojo.keys, l = this.isLeftToRight();
-               this.connectKeyNavHandlers(
-                       l ? [k.LEFT_ARROW] : [k.RIGHT_ARROW],
-                       l ? [k.RIGHT_ARROW] : [k.LEFT_ARROW]
-               );
-
-               // parameter to dijit.popup.open() about where to put popup (relative to this.domNode)
-               this._orient = this.isLeftToRight() ? {BL: 'TL'} : {BR: 'TR'};
-       },
-
-       focusChild: function(item){
-               // overload focusChild so that whenever the focus is moved to a new item,
-               // check the previous focused whether it has its popup open, if so, after
-               // focusing the new item, open its submenu immediately
-               var prev_item = this.focusedChild,
-                       showpopup = prev_item && prev_item.popup && prev_item.popup.isShowingNow;
-               this.inherited(arguments);
-               if(showpopup && item.popup && !item.disabled){
-                       this._openPopup();              // TODO: on down arrow, _openPopup() is called here and in onItemClick()
-               }
-       },
-
-       _onKeyPress: function(/*Event*/ evt){
-               // summary:
-               //              Handle keyboard based menu navigation.
-               // tags:
-               //              protected
-
-               if(evt.ctrlKey || evt.altKey){ return; }
-
-               switch(evt.charOrCode){
-                       case dojo.keys.DOWN_ARROW:
-                               this._moveToPopup(evt);
-                               dojo.stopEvent(evt);
-               }
-       },
-
-       onItemClick: function(/*dijit._Widget*/ item, /*Event*/ evt){
-               // summary:
-               //              Handle clicks on an item. Cancels a dropdown if already open.
-               // tags:
-               //              private
-               if(item.popup && item.popup.isShowingNow){
-                       item.popup.onCancel();
-               }else{
-                       this.inherited(arguments);
-               }
-       }
-});
-
-}
+//>>built
+require({cache:{"url:dijit/templates/MenuBar.html":"<div class=\"dijitMenuBar dijitMenuPassive\" data-dojo-attach-point=\"containerNode\" role=\"menubar\" tabIndex=\"${tabIndex}\"\n\t ></div>\n"}});define("dijit/MenuBar",["dojo/_base/declare","dojo/keys","./_MenuBase","dojo/text!./templates/MenuBar.html"],function(_1,_2,_3,_4){return _1("dijit.MenuBar",_3,{templateString:_4,baseClass:"dijitMenuBar",popupDelay:0,_isMenuBar:true,_orient:["below"],_moveToPopup:function(_5){if(this.focusedChild&&this.focusedChild.popup&&!this.focusedChild.disabled){this.onItemClick(this.focusedChild,_5);}},focusChild:function(_6){this.inherited(arguments);if(this.activated&&_6.popup&&!_6.disabled){this._openItemPopup(_6,true);}},_onChildDeselect:function(_7){if(this.currentPopupItem==_7){this.currentPopupItem=null;_7._closePopup();}this.inherited(arguments);},_onLeftArrow:function(){this.focusPrev();},_onRightArrow:function(){this.focusNext();},_onDownArrow:function(_8){this._moveToPopup(_8);},_onUpArrow:function(){},onItemClick:function(_9,_a){if(_9.popup&&_9.popup.isShowingNow&&(!/^key/.test(_a.type)||_a.keyCode!==_2.DOWN_ARROW)){_9.focusNode.focus();this._cleanUp(true);}else{this.inherited(arguments);}}});});
\ No newline at end of file