mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 23:31:30 +00:00
add dijit/dojo stuff; initial ui mockup
This commit is contained in:
24
lib/dijit/CheckedMenuItem.js
Normal file
24
lib/dijit/CheckedMenuItem.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
Copyright (c) 2004-2010, 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.CheckedMenuItem"]){
|
||||
dojo._hasResource["dijit.CheckedMenuItem"]=true;
|
||||
dojo.provide("dijit.CheckedMenuItem");
|
||||
dojo.require("dijit.MenuItem");
|
||||
dojo.declare("dijit.CheckedMenuItem",dijit.MenuItem,{templateString:dojo.cache("dijit","templates/CheckedMenuItem.html","<tr class=\"dijitReset dijitMenuItem\" dojoAttachPoint=\"focusNode\" waiRole=\"menuitemcheckbox\" tabIndex=\"-1\"\n\t\tdojoAttachEvent=\"onmouseenter:_onHover,onmouseleave:_onUnhover,ondijitclick:_onClick\">\n\t<td class=\"dijitReset dijitMenuItemIconCell\" waiRole=\"presentation\">\n\t\t<img src=\"${_blankGif}\" alt=\"\" class=\"dijitMenuItemIcon dijitCheckedMenuItemIcon\" dojoAttachPoint=\"iconNode\"/>\n\t\t<span class=\"dijitCheckedMenuItemIconChar\">✓</span>\n\t</td>\n\t<td class=\"dijitReset dijitMenuItemLabel\" colspan=\"2\" dojoAttachPoint=\"containerNode,labelNode\"></td>\n\t<td class=\"dijitReset dijitMenuItemAccelKey\" style=\"display: none\" dojoAttachPoint=\"accelKeyNode\"></td>\n\t<td class=\"dijitReset dijitMenuArrowCell\" waiRole=\"presentation\"> </td>\n</tr>\n"),checked:false,_setCheckedAttr:function(_1){
|
||||
dojo.toggleClass(this.domNode,"dijitCheckedMenuItemChecked",_1);
|
||||
dijit.setWaiState(this.domNode,"checked",_1);
|
||||
this.checked=_1;
|
||||
},onChange:function(_2){
|
||||
},_onClick:function(e){
|
||||
if(!this.disabled){
|
||||
this.set("checked",!this.checked);
|
||||
this.onChange(this.checked);
|
||||
}
|
||||
this.inherited(arguments);
|
||||
}});
|
||||
}
|
||||
Reference in New Issue
Block a user