Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lines from 37 #17

Open
jd19007 opened this issue Jul 6, 2020 · 1 comment
Open

Fix lines from 37 #17

jd19007 opened this issue Jul 6, 2020 · 1 comment

Comments

@jd19007
Copy link

jd19007 commented Jul 6, 2020

var converter_height = converter.data("height");
var converter_scroll = converter.data("scroll");
var converter_id = converter.data("id");
//alert(converter_id);
if (converter_scroll == "true") {
converter_scroll = "overflow-y: scroll;";
} else {
converter_scroll = '';
}
if (converter_height == undefined) {
converter_height = '';
} else {
converter_height = "height:"+ converter_height +";";
}
if (converter_id == undefined) {
//alert(converter_id);
converter_id = "";
}

var tree_html = '
div id="treeview_container' + converter_str + '" class="hummingbird-treeview" style=' + converter_height +' ' + converter_scroll + '">' +
' ul id="treeview' + converter_str + converter_id + '" class="hummingbird-base" >';

html will not work in these ugh

this will fix your code for it to work again.

@hummingbird-dev
Copy link
Owner

fixed, thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants