From 9f539be3c2c93ce358b10ca396e922b3b99b56ea Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sat, 21 Jan 2017 12:54:36 -0500 Subject: Replace deprecated dojo.place with domConstruct.place Signed-off-by: Anders Kaseorg --- lib/CheckBoxTree.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/CheckBoxTree.js') 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'); } }, -- cgit v1.2.3