diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2017-01-21 21:59:17 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2017-01-21 21:59:17 +0300 |
| commit | e2e2479984b3aaadb4c0947e5ec15276e5c9a337 (patch) | |
| tree | 1662c1772cbcb6e44d017cea28e35d45de44921f /lib/CheckBoxTree.js | |
| parent | ab235fc5f13385a690a1ed31ae77d0006c85197d (diff) | |
| parent | 1c4f5e83900fdd71a84f2e142c694c75106bef53 (diff) | |
Merge branch 'dojo-1.12.1'
Conflicts:
js/prefs.js
Diffstat (limited to 'lib/CheckBoxTree.js')
| -rw-r--r-- | lib/CheckBoxTree.js | 4 |
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'); } }, |