Skip to content

Commit 308b857

Browse files
committed
build after merge - close vakata#2389
1 parent 1bb3d5b commit 308b857

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dist/jstree.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,7 @@
20662066
tmp = d.children("a").first().length ? d.children("a").first().clone() : d.clone();
20672067
tmp.children("ins, i, ul").remove();
20682068
tmp = tmp.html();
2069-
tmp = $('<div />').html(tmp);
2069+
tmp = $('<div></div>').html(tmp);
20702070
data.text = this.settings.core.force_text ? tmp.text() : tmp.html();
20712071
tmp = d.data();
20722072
data.data = tmp ? $.extend(true, {}, tmp) : null;
@@ -4514,15 +4514,15 @@
45144514
w = this.element.width();
45154515
this._data.core.focused = tmp.id;
45164516
a = obj.children('.jstree-anchor').focus();
4517-
s = $('<span>');
4517+
s = $('<span></span>');
45184518
/*!
45194519
oi = obj.children("i:visible"),
45204520
ai = a.children("i:visible"),
45214521
w1 = oi.width() * oi.length,
45224522
w2 = ai.width() * ai.length,
45234523
*/
45244524
t = default_text;
4525-
h1 = $("<"+"div />", { css : { "position" : "absolute", "top" : "-200px", "left" : (rtl ? "0px" : "-1000px"), "visibility" : "hidden" } }).appendTo(document.body);
4525+
h1 = $("<"+"div></div>", { css : { "position" : "absolute", "top" : "-200px", "left" : (rtl ? "0px" : "-1000px"), "visibility" : "hidden" } }).appendTo(document.body);
45264526
h2 = $("<"+"input />", {
45274527
"value" : t,
45284528
"class" : "jstree-rename-input",
@@ -7015,7 +7015,7 @@
70157015
// helpers
70167016
(function ($) {
70177017
$.vakata.html = {
7018-
div : $('<div />'),
7018+
div : $('<div></div>'),
70197019
escape : function (str) {
70207020
return $.vakata.html.div.text(str).html();
70217021
},

0 commit comments

Comments
 (0)