Merge pull request #2086 from robert-h-curry/1954-link-editor

BUG Fix JS issues in treedropdownfield for link editor
This commit is contained in:
Ingo Schommer 2013-06-12 01:18:30 -07:00
commit 4df7f5f0f8

View File

@ -114,7 +114,7 @@
var node = tree.find('*[data-id="' + val + '"]'),
title = node.children('a').find("span.jstree_pageicon")?node.children('a').find("span.item").html():null;
if(!title) title=(node) ? tree.jstree('get_text', node[0]) : null;
if(!title) title=(node.length > 0) ? tree.jstree('get_text', node[0]) : null;
if(title) self.setTitle(title);
if(node) tree.jstree('select_node', node);
@ -122,8 +122,8 @@
};
// Load the tree if its not already present
if(jQuery.jstree._reference(tree) || !val) updateFn();
else this.loadTree(null, updateFn);
if(!tree.is(':empty') || !val) updateFn();
else this.loadTree({forceValue: val}, updateFn);
},
setValue: function(val) {
this.data('metadata', $.extend(this.data('metadata'), {id: val}));