mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:45:56 +00:00
Replace deprecated dojo.place with domConstruct.place
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
@@ -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');
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user