From 64271fbf18bc69c38538a734b16bbf18b5bcd0fa Mon Sep 17 00:00:00 2001 From: Claire Revillet Date: Thu, 5 Jul 2012 20:27:42 +0000 Subject: - change arborescence of installer doc tree - move en part at the same level as other languages - add de part --- common/jquery/treeview/jquery.treeview.async.js | 72 ------------------------- 1 file changed, 72 deletions(-) delete mode 100644 common/jquery/treeview/jquery.treeview.async.js (limited to 'common/jquery/treeview/jquery.treeview.async.js') diff --git a/common/jquery/treeview/jquery.treeview.async.js b/common/jquery/treeview/jquery.treeview.async.js deleted file mode 100644 index 2597dde1..00000000 --- a/common/jquery/treeview/jquery.treeview.async.js +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Async Treeview 0.1 - Lazy-loading extension for Treeview - * - * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ - * - * Copyright (c) 2007 Jörn Zaefferer - * - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * Revision: $Id$ - * - */ - -;(function($) { - -function load(settings, root, child, container) { - $.getJSON(settings.url, {root: root}, function(response) { - function createNode(parent) { - var current = $("
  • ").attr("id", this.id || "").html("" + this.text + "").appendTo(parent); - if (this.classes) { - current.children("span").addClass(this.classes); - } - if (this.expanded) { - current.addClass("open"); - } - if (this.hasChildren || this.children && this.children.length) { - var branch = $("