From 6887a0f57307820b097b51aee952c555bcf69024 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 20 Jan 2017 12:29:59 -0500 Subject: lib: Upgrade Dojo and Dijit from 1.8.3 to 1.12.1 The itemNode and expandoNode elements have changed from img to span (https://bugs.dojotoolkit.org/ticket/16699), so we now put our tree icons inside them rather than replacing them. Signed-off-by: Anders Kaseorg --- lib/dijit/CheckedMenuItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/dijit/CheckedMenuItem.js') diff --git a/lib/dijit/CheckedMenuItem.js b/lib/dijit/CheckedMenuItem.js index acb134479..9d66345a2 100644 --- a/lib/dijit/CheckedMenuItem.js +++ b/lib/dijit/CheckedMenuItem.js @@ -1,2 +1,2 @@ //>>built -require({cache:{"url:dijit/templates/CheckedMenuItem.html":"\n\t\n\t\t\"\"\n\t\t\n\t\n\t\n\t\n\t \n\n"}});define("dijit/CheckedMenuItem",["dojo/_base/declare","dojo/dom-class","./MenuItem","dojo/text!./templates/CheckedMenuItem.html","./hccss"],function(_1,_2,_3,_4){return _1("dijit.CheckedMenuItem",_3,{templateString:_4,checked:false,_setCheckedAttr:function(_5){_2.toggle(this.domNode,"dijitCheckedMenuItemChecked",_5);this.domNode.setAttribute("aria-checked",_5?"true":"false");this._set("checked",_5);},iconClass:"",onChange:function(){},_onClick:function(_6){if(!this.disabled){this.set("checked",!this.checked);this.onChange(this.checked);}this.onClick(_6);}});}); \ No newline at end of file +require({cache:{"url:dijit/templates/CheckedMenuItem.html":"\n\t\n\t\t\n\t\t${!checkedChar}\n\t\n\t\n\t\n\t \n\n"}});define("dijit/CheckedMenuItem",["dojo/_base/declare","dojo/dom-class","./MenuItem","dojo/text!./templates/CheckedMenuItem.html","./hccss"],function(_1,_2,_3,_4){return _1("dijit.CheckedMenuItem",_3,{baseClass:"dijitMenuItem dijitCheckedMenuItem",templateString:_4,checked:false,_setCheckedAttr:function(_5){this.domNode.setAttribute("aria-checked",_5?"true":"false");this._set("checked",_5);},iconClass:"",role:"menuitemcheckbox",checkedChar:"✓",onChange:function(){},_onClick:function(_6){if(!this.disabled){this.set("checked",!this.checked);this.onChange(this.checked);}this.onClick(_6);}});}); \ No newline at end of file -- cgit v1.2.3-54-g00ecf