summaryrefslogtreecommitdiff
path: root/lib/CheckBoxTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-01-21 21:59:17 +0300
committerAndrew Dolgov <[email protected]>2017-01-21 21:59:17 +0300
commite2e2479984b3aaadb4c0947e5ec15276e5c9a337 (patch)
tree1662c1772cbcb6e44d017cea28e35d45de44921f /lib/CheckBoxTree.js
parentab235fc5f13385a690a1ed31ae77d0006c85197d (diff)
parent1c4f5e83900fdd71a84f2e142c694c75106bef53 (diff)
Merge branch 'dojo-1.12.1'
Conflicts: js/prefs.js
Diffstat (limited to 'lib/CheckBoxTree.js')
-rw-r--r--lib/CheckBoxTree.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CheckBoxTree.js b/lib/CheckBoxTree.js
index 1684c7174..41c74ab3b 100644
--- a/lib/CheckBoxTree.js
+++ b/lib/CheckBoxTree.js
@@ -338,7 +338,7 @@ require(["dojo/_base/declare", "dijit/tree/TreeStoreModel"], function (declare)
});
-require(["dojo/_base/declare", "dijit/Tree"], function (declare) {
+require(["dojo/_base/declare", "dojo/dom-construct", "dijit/Tree"], function (declare, domConstruct) {
return declare("lib._CheckBoxTreeNode", dijit._TreeNode,
{
@@ -363,7 +363,7 @@ require(["dojo/_base/declare", "dijit/Tree"], function (declare) {
//this._checkbox = dojo.doc.createElement('input');
this._checkbox.type = 'checkbox';
this._checkbox.attr('checked', currState);
- dojo.place(this._checkbox.domNode, this.expandoNode, 'after');
+ domConstruct.place(this._checkbox.domNode, this.expandoNode, 'after');
}
},