Sha256: 5131daf0f58abd5774b79583a3524a5396cd8bd7dc3c9467ba5a9395bef114b6
Contents?: true
Size: 1.45 KB
Versions: 9
Compression:
Stored size: 1.45 KB
Contents
/* RSence * Copyright 2010 Riassence Inc. * http://riassence.com/ * * You should have received a copy of the GNU General Public License along * with this software package. If not, contact licensing@riassence.com */ /*** = Description ** Menu item for the HMiniMenu component. ***/ var//RSence.Menus HMiniMenuItem = HRadioButton.extend({ componentName: 'minimenuitem', defaultEvents: { click: true, mouseUp: true, mouseDown: true }, _activateParentParent: function(){ var _parentParent = this.parent.options.logicParent; EVENT.changeActiveControl(_parentParent); // EVENT.changeActiveControl(null); // EVENT.blur( _this ); }, gainedActiveStatus: function( _prevActive ){ // console.log('menuitem gained active status',_prevActive === this.parent.options.logicParent); this.base( _prevActive ); }, lostActiveStatus: function( _newActive ){ this.parent.options.logicParent.menuHide(); this.base( _newActive ); }, _parentLastActivation: 0, click: function(){ var _now = new Date().getTime(); if( _now - this._parentLastActivation > 200 ){ this.base(); this._parentLastActivation = _now; EVENT.changeActiveControl(null); // this._activateParentParent(); } return true; }, mouseDown: function(){ this.base(); this.click(); return true; }, mouseUp: function(){ this.base(); this.click(); return true; } });
Version data entries
9 entries across 9 versions & 1 rubygems