Upgrade to JQuery-1.4.2 step 2

This commit is contained in:
Xavier Guimard 2010-08-18 14:08:30 +00:00
parent b09b37566d
commit 2ec7297695
2 changed files with 3 additions and 2 deletions

View File

@ -101,6 +101,7 @@ lemonldap-ng (1.0rc2) unstable; urgency=low
* [LEMONLDAP-84] - Check format and friendly name of requested attribute
* [LEMONLDAP-85] - Check requested attribute values
* [LEMONLDAP-96] - Add encryptionkey in Attribute Authority metadata
* Upgrade to JQuery-1.4.2
lemonldap-ng (1.0rc1) unstable; urgency=low

View File

@ -478,7 +478,7 @@ $.fn.simpleTree = function(opt){
TREE.newNodeIn = function(node, id, text, callback)
{
var temp_node = $('<li><ul><li id="'+id+'"><span>'+text+'</span></li></ul></li>');
TREE.setTreeNodes(temp_node,true);
TREE.setTreeNodes(temp_node,false);
destination = node;
dragNode_source = $('.doc-last',temp_node);
TREE.moveNodeToFolder(destination);
@ -499,7 +499,7 @@ $.fn.simpleTree = function(opt){
TREE.newAjaxNodeIn = function(node,id,text,url,callback)
{
var temp_node = $('<li><ul><li id="'+id+'"><span>'+text+'</span><ul class="ajax"><li id="new">.{url:'+url+'}</li></ul></li></ul></li>');
TREE.setTreeNodes(temp_node,true);
TREE.setTreeNodes(temp_node,false);
destination = node;
dragNode_source = $('.folder-close-last',temp_node);
TREE.moveNodeToFolder(destination);