From 406570da5bb39d17ea6512fa1b53687f70dd0c4a Mon Sep 17 00:00:00 2001 From: Martin Wendt Date: Thu, 26 Dec 2019 15:16:30 +0100 Subject: [PATCH] Bump version to 2.34.0 --- bower.json | 2 +- dist/jquery.fancytree-all-deps.js | 244 +++++++++++------ dist/jquery.fancytree-all-deps.min.js | 2 +- dist/jquery.fancytree-all-deps.min.js.map | 2 +- dist/jquery.fancytree-all.js | 248 ++++++++++++------ dist/jquery.fancytree-all.min.js | 30 +-- dist/jquery.fancytree.min.js | 2 +- dist/modules/jquery.fancytree.ariagrid.js | 6 +- dist/modules/jquery.fancytree.childcounter.js | 8 +- dist/modules/jquery.fancytree.clones.js | 6 +- dist/modules/jquery.fancytree.columnview.js | 6 +- dist/modules/jquery.fancytree.dnd.js | 6 +- dist/modules/jquery.fancytree.dnd5.js | 6 +- dist/modules/jquery.fancytree.edit.js | 6 +- dist/modules/jquery.fancytree.filter.js | 6 +- dist/modules/jquery.fancytree.fixed.js | 4 +- dist/modules/jquery.fancytree.glyph.js | 6 +- dist/modules/jquery.fancytree.grid.js | 29 +- dist/modules/jquery.fancytree.gridnav.js | 6 +- dist/modules/jquery.fancytree.js | 164 +++++++++--- dist/modules/jquery.fancytree.logger.js | 6 +- dist/modules/jquery.fancytree.menu.js | 6 +- dist/modules/jquery.fancytree.multi.js | 6 +- dist/modules/jquery.fancytree.persist.js | 10 +- dist/modules/jquery.fancytree.table.js | 6 +- dist/modules/jquery.fancytree.themeroller.js | 6 +- dist/modules/jquery.fancytree.wide.js | 6 +- dist/skin-awesome/ui.fancytree.css | 4 +- dist/skin-bootstrap-n/ui.fancytree.css | 4 +- dist/skin-bootstrap/ui.fancytree.css | 4 +- dist/skin-common.less | 4 +- dist/skin-lion/ui.fancytree.css | 4 +- dist/skin-material/ui.fancytree.css | 4 +- dist/skin-themeroller/ui.fancytree.css | 4 +- dist/skin-vista/ui.fancytree.css | 4 +- dist/skin-win7/ui.fancytree.css | 4 +- dist/skin-win8-n/ui.fancytree.css | 4 +- dist/skin-win8-xxl/ui.fancytree.css | 4 +- dist/skin-win8/ui.fancytree.css | 4 +- dist/skin-xp/ui.fancytree.css | 4 +- package.json | 4 +- 41 files changed, 593 insertions(+), 298 deletions(-) diff --git a/bower.json b/bower.json index ccba28f5..2885bd7b 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "jquery.fancytree", "description": "JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading", - "version": "2.33.1-0", + "version": "2.34.0", "main": [ "dist/jquery.fancytree-all-deps.min.js" ], diff --git a/dist/jquery.fancytree-all-deps.js b/dist/jquery.fancytree-all-deps.js index 37e47013..936ed0ef 100644 --- a/dist/jquery.fancytree-all-deps.js +++ b/dist/jquery.fancytree-all-deps.js @@ -1,4 +1,4 @@ -/*! jQuery Fancytree Plugin - 2.33.0 - 2019-10-29T08:00:07Z +/*! jQuery Fancytree Plugin - 2.34.0 - 2019-12-26T14:16:19Z * https://github.com/mar10/fancytree * Copyright (c) 2019 Martin Wendt; Licensed MIT */ @@ -1365,8 +1365,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ /** Core Fancytree module. @@ -4156,11 +4156,18 @@ var uniqueId = $.fn.extend( { delete this._tempCache[key]; return null; }, + /* Check if this tree has extension `name` enabled. + * + * @param {string} name name of the required extension + */ + _usesExtension: function(name) { + return $.inArray(name, this.options.extensions) >= 0; + }, /* Check if current extensions dependencies are met and throw an error if not. * * This method may be called inside the `treeInit` hook for custom extensions. * - * @param {string} extension name of the required extension + * @param {string} name name of the required extension * @param {boolean} [required=true] pass `false` if the extension is optional, but we want to check for order if it is present * @param {boolean} [before] `true` if `name` must be included before this, `false` otherwise (use `null` if order doesn't matter) * @param {string} [message] optional error message (defaults to a descriptve error message) @@ -4417,6 +4424,13 @@ var uniqueId = $.fn.extend( { consoleApply("log", arguments); } }, + /** Destroy this widget, restore previous markup and cleanup resources. + * + * @since 2.34 + */ + destroy: function() { + this.widget.destroy(); + }, /** Enable (or disable) the tree control. * * @param {boolean} [flag=true] pass false to disable @@ -4795,6 +4809,20 @@ var uniqueId = $.fn.extend( { * @returns {boolean} */ hasFocus: function() { + // var ae = document.activeElement, + // hasFocus = !!( + // ae && $(ae).closest(".fancytree-container").length + // ); + + // if (hasFocus !== !!this._hasFocus) { + // this.warn( + // "hasFocus(): fix inconsistent container state, now: " + + // hasFocus + // ); + // this._hasFocus = hasFocus; + // this.$container.toggleClass("fancytree-treefocus", hasFocus); + // } + // return hasFocus; return !!this._hasFocus; }, /** Write to browser console if debugLevel >= 3 (prepending tree name) @@ -5120,6 +5148,26 @@ var uniqueId = $.fn.extend( { setOption: function(optionName, value) { return this.widget.option(optionName, value); }, + /** + * Call console.time() when in debug mode (verbose >= 4). + * + * @param {string} label + */ + debugTime: function(label) { + if (this.options.debugLevel >= 4) { + window.console.time(this + " - " + label); + } + }, + /** + * Call console.timeEnd() when in debug mode (verbose >= 4). + * + * @param {string} label + */ + debugTimeEnd: function(label) { + if (this.options.debugLevel >= 4) { + window.console.timeEnd(this + " - " + label); + } + }, /** * Return all nodes as nested list of {@link NodeData}. * @@ -5185,7 +5233,7 @@ var uniqueId = $.fn.extend( { * @since 2.28 */ visitRows: function(fn, opts) { - if (!this.rootNode.children) { + if (!this.rootNode.hasChildren()) { return false; } if (opts && opts.reverse) { @@ -5314,7 +5362,8 @@ var uniqueId = $.fn.extend( { /** * These additional methods of the {@link Fancytree} class are 'hook functions' * that can be used and overloaded by extensions. - * (See writing extensions.) + * + * @see [writing extensions](https://github.com/mar10/fancytree/wiki/TutorialExtensions) * @mixin Fancytree_Hooks */ $.extend( @@ -6005,6 +6054,7 @@ var uniqueId = $.fn.extend( { * Call this method to create new nodes, or after the strucuture * was changed (e.g. after moving this node or adding/removing children) * nodeRenderTitle() and nodeRenderStatus() are implied. + * * ```html *
  • * @@ -7493,14 +7543,28 @@ var uniqueId = $.fn.extend( { */ /** - * The plugin (derrived from jQuery.Widget).
    - * This constructor is not called directly. Use `$(selector).fancytree({})` - * to initialize the plugin instead.
    - *
    // Access widget methods and members:
    -	 * var tree = $("#tree").fancytree("getTree");
    -	 * var node = $("#tree").fancytree("getActiveNode", "1234");
    -	 * 
    + * The plugin (derrived from [jQuery.Widget](http://api.jqueryui.com/jQuery.widget/)). + * + * **Note:** + * These methods implement the standard jQuery UI widget API. + * It is recommended to use methods of the {Fancytree} instance instead + * + * @example + * // DEPRECATED: Access jQuery UI widget methods and members: + * var tree = $("#tree").fancytree("getTree", "#myTree"); + * var node = $.ui.fancytree.getTree("#tree").getActiveNode(); * + * // RECOMMENDED: Use the Fancytree object API + * var tree = $.ui.fancytree.getTree("#myTree"); + * var node = tree.getActiveNode(); + * + * // or you may already have stored the tree instance upon creation: + * import {createTree, version} from 'jquery.fancytree' + * const tree = createTree('#tree', { ... }); + * var node = tree.getActiveNode(); + * + * @see {Fancytree_Static#getTree} + * @deprecated Use methods of the {Fancytree} instance instead * @mixin Fancytree_Widget */ @@ -7584,6 +7648,17 @@ var uniqueId = $.fn.extend( { lazyLoad: null, postProcess: null, }, + _deprecationWarning: function(name) { + var tree = this.tree; + + if (tree && tree.options.debugLevel >= 3) { + tree.warn( + "$().fancytree('" + + name + + "') is deprecated (see https://wwwendt.de/tech/fancytree/doc/jsdoc/Fancytree_Widget.html" + ); + } + }, /* Set up the widget, Called on first $().fancytree() */ _create: function() { this.tree = new Fancytree(this); @@ -7701,11 +7776,11 @@ var uniqueId = $.fn.extend( { }, /** Use the destroy method to clean up any modifications your widget has made to the DOM */ - destroy: function() { + _destroy: function() { this._unbind(); this.tree._callHook("treeDestroy", this.tree); // In jQuery UI 1.8, you must invoke the destroy method from the base widget - $.Widget.prototype.destroy.call(this); + // $.Widget.prototype.destroy.call(this); // TODO: delete tree and nodes to make garbage collect easier? // TODO: In jQuery UI 1.9 and above, you would define _destroy instead of destroy and not call the base method }, @@ -7898,27 +7973,35 @@ var uniqueId = $.fn.extend( { }, /** Return the active node or null. * @returns {FancytreeNode} + * @deprecated Use methods of the Fancytree instance instead (example above). */ getActiveNode: function() { + this._deprecationWarning("getActiveNode"); return this.tree.activeNode; }, /** Return the matching node or null. * @param {string} key * @returns {FancytreeNode} + * @deprecated Use methods of the Fancytree instance instead (example above). */ getNodeByKey: function(key) { + this._deprecationWarning("getNodeByKey"); return this.tree.getNodeByKey(key); }, /** Return the invisible system root node. * @returns {FancytreeNode} + * @deprecated Use methods of the Fancytree instance instead (example above). */ getRootNode: function() { + this._deprecationWarning("getRootNode"); return this.tree.rootNode; }, /** Return the current tree instance. * @returns {Fancytree} + * @deprecated Use `$.ui.fancytree.getTree()` instead (example above). */ getTree: function() { + this._deprecationWarning("getTree"); return this.tree; }, } @@ -7928,12 +8011,14 @@ var uniqueId = $.fn.extend( { FT = $.ui.fancytree; /** - * Static members in the `$.ui.fancytree` namespace.
    - *
    - *
    // Access static members:
    +	 * Static members in the `$.ui.fancytree` namespace.
    +	 * This properties and methods can be accessed without instantiating a concrete
    +	 * Fancytree instance.
    +	 *
    +	 * @example
    +	 * // Access static members:
     	 * var node = $.ui.fancytree.getNode(element);
     	 * alert($.ui.fancytree.version);
    -	 * 
    * * @mixin Fancytree_Static */ @@ -7941,11 +8026,14 @@ var uniqueId = $.fn.extend( { $.ui.fancytree, /** @lends Fancytree_Static# */ { - /** @type {string} */ - version: "2.33.0", // Set to semver by 'grunt release' - /** @type {string} */ + /** Version number `"MAJOR.MINOR.PATCH"` + * @type {string} */ + version: "2.34.0", // Set to semver by 'grunt release' + /** @type {string} + * @description `"production" for release builds` */ buildType: "production", // Set to 'production' by 'grunt build' - /** @type {int} */ + /** @type {int} + * @description 0: silent .. 5: verbose (default: 3 for release builds). */ debugLevel: 3, // Set to 3 by 'grunt build' // Used by $.ui.fancytree.debug() and as default for tree.options.debugLevel @@ -7954,9 +8042,15 @@ var uniqueId = $.fn.extend( { _extensions: {}, // focusTree: null, - /** Expose class object as $.ui.fancytree._FancytreeClass */ + /** Expose class object as `$.ui.fancytree._FancytreeClass`. + * Useful to extend `$.ui.fancytree._FancytreeClass.prototype`. + * @type {Fancytree} + */ _FancytreeClass: Fancytree, - /** Expose class object as $.ui.fancytree._FancytreeNodeClass */ + /** Expose class object as $.ui.fancytree._FancytreeNodeClass + * Useful to extend `$.ui.fancytree._FancytreeNodeClass.prototype`. + * @type {FancytreeNode} + */ _FancytreeNodeClass: FancytreeNode, /* Feature checks to provide backwards compatibility */ jquerySupports: { @@ -7983,10 +8077,8 @@ var uniqueId = $.fn.extend( { * @since 2.25 */ createTree: function(el, opts) { - var tree = $(el) - .fancytree(opts) - .fancytree("getTree"); - return tree; + var $tree = $(el).fancytree(opts); + return FT.getTree($tree); }, /** Return a function that executes *fn* at most every *timeout* ms. * @param {integer} timeout @@ -8191,11 +8283,17 @@ var uniqueId = $.fn.extend( { if (!el.length) { el = $(orgEl).eq(0); // el was a selector: use first match } + } else if ( + el instanceof Element || + el instanceof HTMLDocument + ) { + el = $(el); } else if (el instanceof $) { - el = el.eq(0); // el was a jQuery object: use the first DOM element + el = el.eq(0); // el was a jQuery object: use the first } else if (el.originalEvent !== undefined) { el = $(el.target); // el was an Event } + // el is a jQuery object wit one element here el = el.closest(":ui-fancytree"); widget = el.data("ui-fancytree") || el.data("fancytree"); // the latter is required by jQuery <= 1.8 return widget ? widget.tree : null; @@ -8203,11 +8301,11 @@ var uniqueId = $.fn.extend( { /** Return an option value that has a default, but may be overridden by a * callback or a node instance attribute. * - * Evaluation sequence:
    + * Evaluation sequence: * - * If tree.options. is a callback that returns something, use that.
    - * Else if node. is defined, use that.
    - * Else if tree.options. is a value, use that.
    + * If `tree.options.` is a callback that returns something, use that. + * Else if `node.` is defined, use that. + * Else if `tree.options.` is a value, use that. * Else use `defaultValue`. * * @param {string} optionName name of the option property (on node and tree) @@ -8565,8 +8663,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ // To keep the global namespace clean, we wrap everything in a closure. @@ -8602,7 +8700,7 @@ var uniqueId = $.fn.extend( { // New member functions can be added to the `Fancytree` class. // This function will be available for every tree instance: // - // var tree = $("#tree").fancytree("getTree"); + // var tree = $.ui.fancytree.getTree("#tree"); // tree.countSelected(false); $.ui.fancytree._FancytreeClass.prototype.countSelected = function(topOnly) { @@ -8685,7 +8783,7 @@ var uniqueId = $.fn.extend( { // Every extension must be registered by a unique name. name: "childcounter", // Version information should be compliant with [semver](http://semver.org) - version: "2.33.0", + version: "2.34.0", // Extension specific options and their defaults. // This options will be available as `tree.options.childcounter.hideExpanded` @@ -8796,8 +8894,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -9155,7 +9253,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "clones", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { highlightActiveClones: true, // set 'fancytree-active-clone' on active clones and all peers @@ -9317,8 +9415,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ /* @@ -10322,7 +10420,7 @@ var uniqueId = $.fn.extend( { $.ui.fancytree.registerExtension({ name: "dnd5", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { autoExpandMS: 1500, // Expand nodes after n milliseconds of hovering @@ -10455,8 +10553,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -10748,7 +10846,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "edit", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { adjustWidthOfs: 4, // null: don't adjust input size to content @@ -10859,8 +10957,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -11198,7 +11296,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "filter", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { autoApply: true, // Re-apply last filter if lazy data is loaded @@ -11318,8 +11416,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -11502,7 +11600,7 @@ var uniqueId = $.fn.extend( { $.ui.fancytree.registerExtension({ name: "glyph", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { preset: null, // 'awesome3', 'awesome4', 'bootstrap3', 'material' @@ -11656,8 +11754,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -11774,7 +11872,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "gridnav", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { autofocusInput: false, // Focus first embedded input if node gets activated @@ -11881,8 +11979,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -11911,7 +12009,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "multi", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { allowNoSelect: false, // @@ -12013,8 +12111,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -12154,7 +12252,7 @@ var uniqueId = $.fn.extend( { /** * [ext-persist] Remove persistence data of the given type(s). * Called like - * $("#tree").fancytree("getTree").clearCookies("active expanded focus selected"); + * $.ui.fancytree.getTree("#tree").clearCookies("active expanded focus selected"); * * @alias Fancytree#clearPersistData * @requires jquery.fancytree.persist.js @@ -12191,7 +12289,7 @@ var uniqueId = $.fn.extend( { * [ext-persist] Return persistence information from cookies * * Called like - * $("#tree").fancytree("getTree").getPersistData(); + * $.ui.fancytree.getTree("#tree").getPersistData(); * * @alias Fancytree#getPersistData * @requires jquery.fancytree.persist.js @@ -12214,7 +12312,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "persist", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { cookieDelimiter: "~", @@ -12507,8 +12605,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -12591,7 +12689,7 @@ var uniqueId = $.fn.extend( { $.ui.fancytree.registerExtension({ name: "table", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { checkboxColumnIdx: null, // render the checkboxes into the this column index (default: nodeColumnIdx) @@ -13057,8 +13155,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -13081,7 +13179,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "themeroller", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { activeClass: "ui-state-active", // Class added to active node @@ -13177,8 +13275,8 @@ var uniqueId = $.fn.extend( { * Released under the MIT license * https://github.com/mar10/fancytree/wiki/LicenseInfo * - * @version 2.33.0 - * @date 2019-10-29T08:00:07Z + * @version 2.34.0 + * @date 2019-12-26T14:16:19Z */ (function(factory) { @@ -13308,7 +13406,7 @@ var uniqueId = $.fn.extend( { */ $.ui.fancytree.registerExtension({ name: "wide", - version: "2.33.0", + version: "2.34.0", // Default options for this extension. options: { iconWidth: null, // Adjust this if @fancy-icon-width != "16px" diff --git a/dist/jquery.fancytree-all-deps.min.js b/dist/jquery.fancytree-all-deps.min.js index 716bc1d8..17608388 100644 --- a/dist/jquery.fancytree-all-deps.min.js +++ b/dist/jquery.fancytree-all-deps.min.js @@ -1,2 +1,2 @@ -!function(S){S.ui=S.ui||{};S.ui.version="1.12.1";var r,n=0,a=Array.prototype.slice;S.cleanData=(r=S.cleanData,function(e){var t,n,i;for(i=0;null!=(n=e[i]);i++)try{(t=S._data(n,"events"))&&t.remove&&S(n).triggerHandler("remove")}catch(e){}r(e)}),S.widget=function(e,n,t){var i,r,o,s={},a=e.split(".")[0],l=a+"-"+(e=e.split(".")[1]);return t||(t=n,n=S.Widget),S.isArray(t)&&(t=S.extend.apply(null,[{}].concat(t))),S.expr[":"][l.toLowerCase()]=function(e){return!!S.data(e,l)},S[a]=S[a]||{},i=S[a][e],r=S[a][e]=function(e,t){if(!this._createWidget)return new r(e,t);arguments.length&&this._createWidget(e,t)},S.extend(r,i,{version:t.version,_proto:S.extend({},t),_childConstructors:[]}),(o=new n).options=S.widget.extend({},o.options),S.each(t,function(t,o){S.isFunction(o)?s[t]=function(){function i(){return n.prototype[t].apply(this,arguments)}function r(e){return n.prototype[t].apply(this,e)}return function(){var e,t=this._super,n=this._superApply;return this._super=i,this._superApply=r,e=o.apply(this,arguments),this._super=t,this._superApply=n,e}}():s[t]=o}),r.prototype=S.widget.extend(o,{widgetEventPrefix:i&&o.widgetEventPrefix||e},s,{constructor:r,namespace:a,widgetName:e,widgetFullName:l}),i?(S.each(i._childConstructors,function(e,t){var n=t.prototype;S.widget(n.namespace+"."+n.widgetName,r,t._proto)}),delete i._childConstructors):n._childConstructors.push(r),S.widget.bridge(e,r),r},S.widget.extend=function(e){for(var t,n,i=a.call(arguments,1),r=0,o=i.length;r",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,t){t=S(t||this.defaultElement||this)[0],this.element=S(t),this.uuid=n++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=S(),this.hoverable=S(),this.focusable=S(),this.classesElementLookup={},t!==this&&(S.data(t,this.widgetFullName,this),this._on(!0,this.element,{remove:function(e){e.target===t&&this.destroy()}}),this.document=S(t.style?t.ownerDocument:t.document||t),this.window=S(this.document[0].defaultView||this.document[0].parentWindow)),this.options=S.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:S.noop,_create:S.noop,_init:S.noop,destroy:function(){var n=this;this._destroy(),S.each(this.classesElementLookup,function(e,t){n._removeClass(t,e)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:S.noop,widget:function(){return this.element},option:function(e,t){var n,i,r,o=e;if(0===arguments.length)return S.widget.extend({},this.options);if("string"==typeof e)if(o={},e=(n=e.split(".")).shift(),n.length){for(i=o[e]=S.widget.extend({},this.options[e]),r=0;r
    "),i=n.children()[0];return S("body").append(n),e=i.offsetWidth,n.css("overflow","scroll"),e===(t=i.offsetWidth)&&(t=n[0].clientWidth),n.remove(),r=e-t},getScrollInfo:function(e){var t=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),n=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),i="scroll"===t||"auto"===t&&e.width_(k(i),k(r))?o.important="horizontal":o.important="vertical",u.using.call(this,e,o)}),s.offset(S.extend(d,{using:e}))})},S.ui.position={fit:{left:function(e,t){var n,i=t.within,r=i.isWindow?i.scrollLeft:i.offset.left,o=i.width,s=e.left-t.collisionPosition.marginLeft,a=r-s,l=s+t.collisionWidth-o-r;t.collisionWidth>o?0o?0"'/]/g,n=/[<>"'/]/g,c="$recursive_request",i={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"},r={16:!0,17:!0,18:!0},v={8:"backspace",9:"tab",10:"return",13:"return",19:"pause",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"insert",46:"del",59:";",61:"=",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9",106:"*",107:"+",109:"-",110:".",111:"/",112:"f1",113:"f2",114:"f3",115:"f4",116:"f5",117:"f6",118:"f7",119:"f8",120:"f9",121:"f10",122:"f11",123:"f12",144:"numlock",145:"scroll",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},m={16:"shift",17:"ctrl",18:"alt",91:"meta",93:"meta"},s={0:"",1:"left",2:"middle",3:"right"},b="active expanded focus folder lazy radiogroup selected unselectable unselectableIgnore".split(" "),x={},u="columns types".split(" "),_="checkbox expanded extraClasses folder icon iconTooltip key lazy partsel radiogroup refKey selected statusNodeType title tooltip type unselectable unselectableIgnore unselectableStatus".split(" "),a={},k={},l={active:!0,children:!0,data:!0,focus:!0};for(o=0;oe.getIndexHier(".",5)},isChildOf:function(e){return this.parent&&this.parent===e},isDescendantOf:function(e){if(!e||e.tree!==this.tree)return!1;for(var t=this.parent;t;){if(t===e)return!0;t===t.parent&&C.error("Recursive parent link: "+t),t=t.parent}return!1},isExpanded:function(){return!!this.expanded},isFirstSibling:function(){var e=this.parent;return!e||e.children[0]===this},isFolder:function(){return!!this.folder},isLastSibling:function(){var e=this.parent;return!e||e.children[e.children.length-1]===this},isLazy:function(){return!!this.lazy},isLoaded:function(){return!this.lazy||void 0!==this.hasChildren()},isLoading:function(){return!!this._isLoading},isRoot:function(){return this.isRootNode()},isPartsel:function(){return!this.selected&&!!this.partsel},isPartload:function(){return!!this.partload},isRootNode:function(){return this.tree.rootNode===this},isSelected:function(){return!!this.selected},isStatusNode:function(){return!!this.statusNodeType},isPagingNode:function(){return"paging"===this.statusNodeType},isTopLevel:function(){return this.tree.rootNode===this.parent},isUndefined:function(){return void 0===this.hasChildren()},isVisible:function(){var e,t,n=this.tree.enableFilter,i=this.getParentList(!1,!1);if(n&&!this.match&&!this.subMatchCount)return!1;for(e=0,t=i.length;eDate.now()?t.value:(delete this._tempCache[e],null)},_requireExtension:function(e,t,n,i){null!=n&&(n=!!n);var r=this._local.name,o=this.options.extensions,s=C.inArray(e,o)",{type:"checkbox",name:r,value:e.key,checked:!0}))}a.length?a.empty():a=C("
    ",{id:s}).hide().insertAfter(this.$container),!1!==t&&this.activeNode&&a.append(C("",{type:"radio",name:o,value:this.activeNode.key,checked:!0})),n.filter?this.visit(function(e){var t=n.filter(e);if("skip"===t)return t;!1!==t&&d(e)}):!1!==e&&(i=this.getSelectedNodes(l),C.each(i,function(e,t){d(t)}))},getActiveNode:function(){return this.activeNode},getFirstChild:function(){return this.rootNode.getFirstChild()},getFocusNode:function(){return this.focusNode},getOption:function(e){return this.widget.option(e)},getNodeByKey:function(t,e){var n,i;return!e&&(n=document.getElementById(this.options.idPrefix+t))?n.ftnode?n.ftnode:null:(e=e||this.rootNode,i=null,e.visit(function(e){if(e.key===t)return i=e,!1},!0),i)},getRootNode:function(){return this.rootNode},getSelectedNodes:function(e){return this.rootNode.getSelectedNodes(e)},hasFocus:function(){return!!this._hasFocus},info:function(e){3<=this.options.debugLevel&&(Array.prototype.unshift.call(arguments,this.toString()),d("info",arguments))},isLoading:function(){var t=!1;return this.rootNode.visit(function(e){if(e._isLoading||e._requestId)return!(t=!0)},!0),t},loadKeyPath:function(e,t){var i,n,r,o=this,s=new C.Deferred,a=this.getRootNode(),l=this.options.keyPathSeparator,d=[],c=C.extend({},t);for("function"==typeof t?i=t:t&&t.callback&&(i=t.callback),c.callback=function(e,t,n){i&&i.call(e,t,n),s.notifyWith(e,[{node:t,status:n}])},null==c.matchKey&&(c.matchKey=function(e,t){return e.key===t}),C.isArray(e)||(e=[e]),n=0;nd)s.rejectWith(this,[c]);else{if(o.options.postProcess){try{r=a._triggerNodeEvent("postProcess",o,o.originalEvent,{response:e,error:null,dataType:this.dataType})}catch(e){r={error:e,message:""+e,details:"postProcess failed"}}if(r.error)return i=C.isPlainObject(r.error)?r.error:{message:r.error},i=a._makeHookContext(l,null,i),void s.rejectWith(this,[i]);(C.isArray(r)||C.isPlainObject(r)&&C.isArray(r.children))&&(e=r)}else e&&e.hasOwnProperty("d")&&o.options.enableAspx&&(e="string"==typeof e.d?C.parseJSON(e.d):e.d);s.resolveWith(this,[e])}}).fail(function(e,t,n){var i=a._makeHookContext(l,null,{error:e,args:Array.prototype.slice.call(arguments),message:n,details:e.status+": "+n});s.rejectWith(this,[i])})),C.isFunction(s.then)&&C.isFunction(s.catch)&&(e=s,s=new C.Deferred,e.then(function(e){s.resolve(e)},function(e){s.reject(e)})),C.isFunction(s.promise)?(a.nodeSetStatus(o,"loading"),s.done(function(e){a.nodeSetStatus(o,"ok"),l._requestId=null}).fail(function(e){var t;e!==c?(e.node&&e.error&&e.message?t=e:"[object Object]"===(t=a._makeHookContext(l,null,{error:e,args:Array.prototype.slice.call(arguments),message:e?e.message||e.toString():""})).message&&(t.message=""),l.warn("Load children failed ("+t.message+")",t),!1!==a._triggerNodeEvent("loadError",t,null)&&a.nodeSetStatus(o,"error",t.message,t.details)):l.warn("Ignored response for obsolete load request #"+d+" (expected #"+l._requestId+")")})):o.options.postProcess&&(i=a._triggerNodeEvent("postProcess",o,o.originalEvent,{response:s,error:null,dataType:typeof s}),(C.isArray(i)||C.isPlainObject(i)&&C.isArray(i.children))&&(s=i)),C.when(s).done(function(e){var n,t;C.isPlainObject(e)&&(w(l.isRootNode(),"source may only be an object for root nodes (expecting an array of child objects otherwise)"),w(C.isArray(e.children),"if an object is passed as source, it must contain a 'children' array (all other properties are added to 'tree.data')"),e=(n=e).children,delete n.children,C.each(u,function(e,t){void 0!==n[t]&&(a[t]=n[t],delete n[t])}),C.extend(a.data,n)),w(C.isArray(e),"expected array of children"),l._setChildren(e),a.options.nodata&&0===e.length&&(C.isFunction(a.options.nodata)?t=a.options.nodata.call(a,{type:"nodata"},o):!0===a.options.nodata&&l.isRootNode()?t=a.options.strings.nodata:"string"==typeof a.options.nodata&&l.isRootNode()&&(t=a.options.nodata),t&&l.setStatus("nodata",t)),a._triggerNodeEvent("loadChildren",l)})},nodeLoadKeyPath:function(e,t){},nodeRemoveChild:function(e,t){var n,i=e.node,r=C.extend({},e,{node:t}),o=i.children;if(1===o.length)return w(t===o[0],"invalid single child"),this.nodeRemoveChildren(e);this.activeNode&&(t===this.activeNode||this.activeNode.isDescendantOf(t))&&this.activeNode.setActive(!1),this.focusNode&&(t===this.focusNode||this.focusNode.isDescendantOf(t))&&(this.focusNode=null),this.nodeRemoveMarkup(r),this.nodeRemoveChildren(r),w(0<=(n=C.inArray(t,o)),"invalid child"),i.triggerModifyChild("remove",t),t.visit(function(e){e.parent=null},!0),this._callHook("treeRegisterNode",this,!1,t),o.splice(n,1)},nodeRemoveChildMarkup:function(e){var t=e.node;t.ul&&(t.isRootNode()?C(t.ul).empty():(C(t.ul).remove(),t.ul=null),t.visit(function(e){e.li=e.ul=null}))},nodeRemoveChildren:function(e){var t=e.tree,n=e.node;n.children&&(this.activeNode&&this.activeNode.isDescendantOf(n)&&this.activeNode.setActive(!1),this.focusNode&&this.focusNode.isDescendantOf(n)&&(this.focusNode=null),this.nodeRemoveChildMarkup(e),n.triggerModifyChild("remove",null),n.visit(function(e){e.parent=null,t._callHook("treeRegisterNode",t,!1,e)}),n.lazy?n.children=[]:n.children=null,n.isRootNode()||(n.expanded=!1),this.nodeRenderStatus(e))},nodeRemoveMarkup:function(e){var t=e.node;t.li&&(C(t.li).remove(),t.li=null),this.nodeRemoveChildMarkup(e)},nodeRender:function(e,t,n,i,r){var o,s,a,l,d,c,u,h=e.node,f=e.tree,p=e.options,g=p.aria,y=!1,v=h.parent,m=!v,b=h.children,x=null;if(!1!==f._enableUpdate&&(m||v.ul)){if(w(m||v.ul,"parent UL must exist"),m||(h.li&&(t||h.li.parentNode!==h.parent.ul)&&(h.li.parentNode===h.parent.ul?x=h.li.nextSibling:this.debug("Unlinking "+h+" (must be child of "+h.parent+")"),this.nodeRemoveMarkup(e)),h.li?this.nodeRenderStatus(e):(y=!0,h.li=document.createElement("li"),(h.li.ftnode=h).key&&p.generateIds&&(h.li.id=p.idPrefix+h.key),h.span=document.createElement("span"),h.span.className="fancytree-node",g&&!h.tr&&C(h.li).attr("role","treeitem"),h.li.appendChild(h.span),this.nodeRenderTitle(e),p.createNode&&p.createNode.call(f,{type:"createNode"},e)),p.renderNode&&p.renderNode.call(f,{type:"renderNode"},e)),b){if(m||h.expanded||!0===n){for(h.ul||(h.ul=document.createElement("ul"),(!0!==i||r)&&h.expanded||(h.ul.style.display="none"),g&&C(h.ul).attr("role","group"),h.li?h.li.appendChild(h.ul):h.tree.$div.append(h.ul)),l=0,d=b.length;l")):p.push(""),(n=g.evalOption("checkbox",d,d,u,!1))&&!d.isStatusNode()&&(s=h?" role='checkbox'":"",i="fancytree-checkbox",("radio"===n||d.parent&&d.parent.radiogroup)&&(i+=" fancytree-radio"),p.push("")),void 0!==d.data.iconClass&&(d.icon?C.error("'iconClass' node option is deprecated since v2.14.0: use 'icon' only instead"):(d.warn("'iconClass' node option is deprecated since v2.14.0: use 'icon' instead"),d.icon=d.data.iconClass)),!1!==(r=g.evalOption("icon",d,d,u,!0))&&(s=h?" role='presentation'":"",l=(l=g.evalOption("iconTooltip",d,d,u,null))?" title='"+T(l)+"'":"","string"==typeof r?y.test(r)?(r="/"===r.charAt(0)?r:(u.imagePath||"")+r,p.push("")):p.push(""):r.text?p.push(""+g.escapeHtml(r.text)+""):r.html?p.push(""+r.html+""):p.push("")),o="",u.renderTitle&&(o=u.renderTitle.call(c,{type:"renderTitle"},e)||""),o||(!0===(a=g.evalOption("tooltip",d,d,u,null))&&(a=d.title),o=""+(u.escapeTitles?g.escapeHtml(d.title):d.title)+""),p.push(o),d.span.innerHTML=p.join(""),this.nodeRenderStatus(e),u.enhanceTitle&&(e.$title=C(">span.fancytree-title",d.span),o=u.enhanceTitle.call(c,{type:"enhanceTitle"},e)||""))},nodeRenderStatus:function(e){var t,n=e.node,i=e.tree,r=e.options,o=n.hasChildren(),s=n.isLastSibling(),a=r.aria,l=r._classNames,d=[],c=n[i.statusClassPropName];c&&!1!==i._enableUpdate&&(a&&(t=C(n.tr||n.li)),d.push(l.node),i.activeNode===n&&d.push(l.active),i.focusNode===n&&d.push(l.focused),n.expanded&&d.push(l.expanded),a&&(!1===o?t.removeAttr("aria-expanded"):t.attr("aria-expanded",Boolean(n.expanded))),n.folder&&d.push(l.folder),!1!==o&&d.push(l.hasChildren),s&&d.push(l.lastsib),n.lazy&&null==n.children&&d.push(l.lazy),n.partload&&d.push(l.partload),n.partsel&&d.push(l.partsel),g.evalOption("unselectable",n,n,r,!1)&&d.push(l.unselectable),n._isLoading&&d.push(l.loading),n._error&&d.push(l.error),n.statusNodeType&&d.push(l.statusNodePrefix+n.statusNodeType),n.selected?(d.push(l.selected),a&&t.attr("aria-selected",!0)):a&&t.attr("aria-selected",!1),n.extraClasses&&d.push(n.extraClasses),!1===o?d.push(l.combinedExpanderPrefix+"n"+(s?"l":"")):d.push(l.combinedExpanderPrefix+(n.expanded?"e":"c")+(n.lazy&&null==n.children?"d":"")+(s?"l":"")),d.push(l.combinedIconPrefix+(n.expanded?"e":"c")+(n.folder?"f":"")),c.className=d.join(" "),n.li&&C(n.li).toggleClass(l.lastsib,s))},nodeSetActive:function(e,t,n){n=n||{};var i,r=e.node,o=e.tree,s=e.options,a=!0===n.noEvents,l=!0===n.noFocus,d=!1!==n.scrollIntoView;return r===o.activeNode===(t=!1!==t)?N(r):t&&!a&&!1===this._triggerNodeEvent("beforeActivate",r,e.originalEvent)?S(r,["rejected"]):(t?(o.activeNode&&(w(o.activeNode!==r,"node was active (inconsistency)"),i=C.extend({},e,{node:o.activeNode}),o.nodeSetActive(i,!1),w(null===o.activeNode,"deactivate was out of sync?")),s.activeVisible&&r.makeVisible({scrollIntoView:d}),o.activeNode=r,o.nodeRenderStatus(e),l||o.nodeSetFocus(e),a||o._triggerNodeEvent("activate",r,e.originalEvent)):(w(o.activeNode===r,"node was not active (inconsistency)"),o.activeNode=null,this.nodeRenderStatus(e),a||e.tree._triggerNodeEvent("deactivate",r,e.originalEvent)),N(r))},nodeSetExpanded:function(i,r,e){e=e||{};var t,n,o,s,a,l,d=i.node,c=i.tree,u=i.options,h=!0===e.noAnimation,f=!0===e.noEvents;if(r=!1!==r,d.expanded&&r||!d.expanded&&!r)return N(d);if(r&&!d.lazy&&!d.hasChildren())return N(d);if(!r&&d.getLevel()ul.fancytree-container").empty(),t.rootNode.children=null,t._callHook("treeStructureChanged",e,"clear")},treeCreate:function(e){},treeDestroy:function(e){this.$div.find(">ul.fancytree-container").remove(),this.$source&&this.$source.removeClass("fancytree-helper-hidden")},treeInit:function(e){var n=e.tree,i=n.options;n.$container.attr("tabindex",i.tabindex),C.each(u,function(e,t){void 0!==i[t]&&(n.info("Move option "+t+" to tree"),n[t]=i[t],delete i[t])}),i.checkboxAutoHide&&n.$container.addClass("fancytree-checkbox-auto-hide"),i.rtl?n.$container.attr("DIR","RTL").addClass("fancytree-rtl"):n.$container.removeAttr("DIR").removeClass("fancytree-rtl"),i.aria&&(n.$container.attr("role","tree"),1!==i.selectMode&&n.$container.attr("aria-multiselectable",!0)),this.treeLoad(e)},treeLoad:function(e,t){var n,i,r,o=e.tree,s=e.widget.element,a=C.extend({},e,{node:this.rootNode});if(o.rootNode.children&&this.treeClear(e),t=t||this.options.source)"string"==typeof t&&C.error("Not implemented");else switch(i=s.data("type")||"html"){case"html":(r=s.find(">ul").not(".fancytree-container").first()).length?(r.addClass("ui-fancytree-source fancytree-helper-hidden"),t=C.ui.fancytree.parseHtml(r),this.data=C.extend(this.data,A(r))):(g.warn("No `source` option was passed and container does not contain `
      `: assuming `source: []`."),t=[]);break;case"json":t=C.parseJSON(s.text()),s.contents().filter(function(){return 3===this.nodeType}).remove(),C.isPlainObject(t)&&(w(C.isArray(t.children),"if an object is passed as source, it must contain a 'children' array (all other properties are added to 'tree.data')"),t=(n=t).children,delete n.children,C.each(u,function(e,t){void 0!==n[t]&&(o[t]=n[t],delete n[t])}),C.extend(o.data,n));break;default:C.error("Invalid data-type: "+i)}return o._triggerTreeEvent("preInit",null),this.nodeLoadChildren(a,t).done(function(){o._callHook("treeStructureChanged",e,"loadChildren"),o.render(),3===e.options.selectMode&&o.rootNode.fixSelection3FromEndNodes(),o.activeNode&&o.options.activeVisible&&o.activeNode.makeVisible(),o._triggerTreeEvent("init",null,{status:!0})}).fail(function(){o.render(),o._triggerTreeEvent("init",null,{status:!1})})},treeRegisterNode:function(e,t,n){e.tree._callHook("treeStructureChanged",e,t?"addNode":"removeNode")},treeSetFocus:function(e,t,n){var i;(t=!1!==t)!==this.hasFocus()&&(!(this._hasFocus=t)&&this.focusNode?this.focusNode.setFocus(!1):!t||n&&n.calledByNode||C(this.$container).focus(),this.$container.toggleClass("fancytree-treefocus",t),this._triggerTreeEvent(t?"focusTree":"blurTree"),t&&!this.activeNode&&(i=this._lastMousedownNode||this.getFirstChild())&&i.setFocus())},treeSetOption:function(e,t,n){var i=e.tree,r=!0,o=!1,s=!1;switch(t){case"aria":case"checkbox":case"icon":case"minExpandLevel":case"tabindex":s=o=!0;break;case"checkboxAutoHide":i.$container.toggleClass("fancytree-checkbox-auto-hide",!!n);break;case"escapeTitles":case"tooltip":s=!0;break;case"rtl":!1===n?i.$container.removeAttr("DIR").removeClass("fancytree-rtl"):i.$container.attr("DIR","RTL").addClass("fancytree-rtl"),s=!0;break;case"source":r=!1,i._callHook("treeLoad",i,n),s=!0}i.debug("set option "+t+"="+n+" <"+typeof n+">"),r&&(this.widget._super?this.widget._super.call(this.widget,t,n):C.Widget.prototype._setOption.call(this.widget,t,n)),o&&i._callHook("treeCreate",i),s&&i.render(!0,!1)},treeStructureChanged:function(e,t){}}),C.widget("ui.fancytree",{options:{activeVisible:!0,ajax:{type:"GET",cache:!1,dataType:"json"},aria:!0,autoActivate:!0,autoCollapse:!1,autoScroll:!1,checkbox:!1,clickFolderMode:4,debugLevel:null,disabled:!1,enableAspx:!0,escapeTitles:!1,extensions:[],toggleEffect:{effect:"slideToggle",duration:200},generateIds:!1,icon:!0,idPrefix:"ft_",focusOnSelect:!1,keyboard:!0,keyPathSeparator:"/",minExpandLevel:1,nodata:!0,quicksearch:!1,rtl:!1,scrollOfs:{top:0,bottom:0},scrollParent:null,selectMode:2,strings:{loading:"Loading...",loadError:"Load error!",moreData:"More...",noData:"No data."},tabindex:"0",titlesTabbable:!1,tooltip:!1,treeId:null,_classNames:{node:"fancytree-node",folder:"fancytree-folder",animating:"fancytree-animating",combinedExpanderPrefix:"fancytree-exp-",combinedIconPrefix:"fancytree-ico-",hasChildren:"fancytree-has-children",active:"fancytree-active",selected:"fancytree-selected",expanded:"fancytree-expanded",lazy:"fancytree-lazy",focused:"fancytree-focused",partload:"fancytree-partload",partsel:"fancytree-partsel",radio:"fancytree-radio",unselectable:"fancytree-unselectable",lastsib:"fancytree-lastsib",loading:"fancytree-loading",error:"fancytree-error",statusNodePrefix:"fancytree-statusnode-"},lazyLoad:null,postProcess:null},_create:function(){this.tree=new F(this),this.$source=this.source||"json"===this.element.data("type")?this.element:this.element.find(">ul").first();var e,t,n,i=this.options,r=i.extensions;this.tree;for(n=0;n element.");else{if(n){if(o._getExpiringValue("focusin"))return void o.debug("Ignored double focusin.");o._setExpiringValue("focusin",!0,50),t||(t=o._getExpiringValue("mouseDownNode"))&&o.debug("Reconstruct mouse target for focusin from recent event.")}t?o._callHook("nodeSetFocus",o._makeHookContext(t,e),n):o.tbody&&C(e.target).parents("table.fancytree-container > thead").length?o.debug("Ignore focus event outside table body.",e):o._callHook("treeSetFocus",o,n)}}).on("selectstart"+e,"span.fancytree-title",function(e){e.preventDefault()}).on("keydown"+e,function(e){if(a.disabled||!1===a.keyboard)return!0;var t,n=o.focusNode,i=o._makeHookContext(n||o,e),r=o.phase;try{return o.phase="userEvent","preventNav"===(t=n?o._triggerNodeEvent("keydown",n,e):o._triggerTreeEvent("keydown",e))?t=!0:!1!==t&&(t=o._callHook("nodeKeydown",i)),t}finally{o.phase=r}}).on("mousedown"+e,function(e){var t=g.getEventTarget(e);o._lastMousedownNode=t?t.node:null,o._setExpiringValue("mouseDownNode",o._lastMousedownNode)}).on("click"+e+" dblclick"+e,function(e){if(a.disabled)return!0;var t,n=g.getEventTarget(e),i=n.node,r=s.tree,o=r.phase;if(!i)return!0;t=r._makeHookContext(i,e);try{switch(r.phase="userEvent",e.type){case"click":return t.targetType=n.type,i.isPagingNode()?!0===r._triggerNodeEvent("clickPaging",t,e):!1!==r._triggerNodeEvent("click",t,e)&&r._callHook("nodeClick",t);case"dblclick":return t.targetType=n.type,!1!==r._triggerNodeEvent("dblclick",t,e)&&r._callHook("nodeDblclick",t)}}finally{r.phase=o}})},getActiveNode:function(){return this.tree.activeNode},getNodeByKey:function(e){return this.tree.getNodeByKey(e)},getRootNode:function(){return this.tree.rootNode},getTree:function(){return this.tree}}),g=C.ui.fancytree,C.extend(C.ui.fancytree,{version:"2.33.0",buildType: "production",debugLevel: 3,_nextId:1,_nextNodeKey:1,_extensions:{},_FancytreeClass:F,_FancytreeNodeClass:P,jquerySupports:{positionMyOfs:function(e,t,n,i){var r,o,s,a=C.map(C.trim(e).split("."),function(e){return parseInt(e,10)}),l=C.map(Array.prototype.slice.call(arguments,1),function(e){return parseInt(e,10)});for(r=0;rli"),g=[];return e.each(function(){var e,t,n=C(this),i=n.find(">span",this).first(),r=i.length?null:n.find(">a").first(),o={tooltip:null,data:{}};for(i.length?o.title=i.html():r&&r.length?(o.title=r.html(),o.data.href=r.attr("href"),o.data.target=r.attr("target"),o.tooltip=r.attr("title")):(o.title=n.html(),0<=(u=o.title.search(/
        ul").first()).length?o.children=C.ui.fancytree.parseHtml(s):o.children=o.lazy?void 0:null,g.push(o)}),g},registerExtension:function(e){w(null!=e.name,"extensions must have a `name` property."),w(null!=e.version,"extensions must have a `version` property."),C.ui.fancytree._extensions[e.name]=e},unescapeHtml:function(e){var t=document.createElement("div");return t.innerHTML=e,0===t.childNodes.length?"":t.childNodes[0].nodeValue},warn:function(e){2<=C.ui.fancytree.debugLevel&&d("warn",arguments)}}),C.ui.fancytree}function w(e,t){e||(t=t?": "+t:"",C.error("Fancytree assertion failed"+t))}function d(e,t){var n,i,r=window.console?window.console[e]:null;if(r)try{r.apply(window.console,t)}catch(e){for(i="",n=0;nul.fancytree-container").remove();var t,n={tree:this};this.rootNode=new P(n,{title:"root",key:"root_"+this._id,children:null,expanded:!0}),this.rootNode.parent=null,t=C("
          ",{id:"ft-id-"+this._id,class:"ui-fancytree fancytree-container fancytree-plain"}).appendTo(this.$div),this.$container=t,this.rootNode.ul=t[0],null==this.options.debugLevel&&(this.options.debugLevel=g.debugLevel)}C.ui.fancytree.warn("Fancytree: ignored duplicate include")},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree.ui-deps"],t):"object"==typeof module&&module.exports?(require("./jquery.fancytree.ui-deps"),module.exports=t(require("jquery"))):t(jQuery),n=function(o){"use strict";return o.ui.fancytree._FancytreeClass.prototype.countSelected=function(e){this.options;return this.getSelectedNodes(e).length},o.ui.fancytree._FancytreeNodeClass.prototype.updateCounters=function(){var e=this,t=o("span.fancytree-childcounter",e.span),n=e.tree.options.childcounter,i=e.countChildren(n.deep);!(e.data.childCounter=i)&&n.hideZeros||e.isExpanded()&&n.hideExpanded?t.remove():(t.length||(t=o("").appendTo(o("span.fancytree-icon,span.fancytree-custom-icon",e.span))),t.text(i)),!n.deep||e.isTopLevel()||e.isRoot()||e.parent.updateCounters()},o.ui.fancytree.prototype.widgetMethod1=function(e){this.tree;return e},o.ui.fancytree.registerExtension({name:"childcounter",version:"2.33.0",options:{deep:!0,hideZeros:!0,hideExpanded:!1},foo:42,_appendCounter:function(e){},treeInit:function(e){e.options,e.options.childcounter;this._superApply(arguments),this.$container.addClass("fancytree-ext-childcounter")},treeDestroy:function(e){this._superApply(arguments)},nodeRenderTitle:function(e,t){var n=e.node,i=e.options.childcounter,r=null==n.data.childCounter?n.countChildren(i.deep):+n.data.childCounter;this._super(e,t),!r&&i.hideZeros||n.isExpanded()&&i.hideExpanded||o("span.fancytree-icon,span.fancytree-custom-icon",n.span).append(o("").text(r))},nodeSetExpanded:function(e,t,n){var i=e.tree;e.node;return this._superApply(arguments).always(function(){i.nodeRenderTitle(e)})}}),o.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],n):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=n(require("jquery"))):n(jQuery),i=function(h){"use strict";function f(e,t){e||(t=t?": "+t:"",h.error("Assertion failed"+t))}function r(e,t,n){for(var i,r,o=3&e.length,s=e.length-o,a=n,l=3432918353,d=461845907,c=0;c>>16)*l&65535)<<16)&4294967295)<<15|r>>>17))*d+(((r>>>16)*d&65535)<<16)&4294967295)<<13|a>>>19))+((5*(a>>>16)&65535)<<16)&4294967295))+((58964+(i>>>16)&65535)<<16);switch(r=0,o){case 3:r^=(255&e.charCodeAt(c+2))<<16;case 2:r^=(255&e.charCodeAt(c+1))<<8;case 1:a^=r=(65535&(r=(r=(65535&(r^=255&e.charCodeAt(c)))*l+(((r>>>16)*l&65535)<<16)&4294967295)<<15|r>>>17))*d+(((r>>>16)*d&65535)<<16)&4294967295}return a^=e.length,a=2246822507*(65535&(a^=a>>>16))+((2246822507*(a>>>16)&65535)<<16)&4294967295,a=3266489909*(65535&(a^=a>>>13))+((3266489909*(a>>>16)&65535)<<16)&4294967295,a^=a>>>16,t?("0000000"+(a>>>0).toString(16)).substr(-8):a>>>0}return h.ui.fancytree._FancytreeNodeClass.prototype.getCloneList=function(e){var t,n=this.tree,i=n.refMap[this.refKey]||null,r=n.keyMap;return i&&(t=this.key,e?i=h.map(i,function(e){return r[e]}):(i=h.map(i,function(e){return e===t?null:r[e]})).length<1&&(i=null)),i},h.ui.fancytree._FancytreeNodeClass.prototype.isClone=function(){var e=this.refKey||null,t=e&&this.tree.refMap[e]||null;return!!(t&&1 "+c.getPath(!0);o.error(u),h.error(u)}s[l]=n,d&&((i=a[d])?(i.push(l),2===i.length&&e.options.clones.highlightClones&&s[i[0]].renderStatus()):a[d]=[l])}else null==s[l]&&h.error("clones.treeRegisterNode: node.key not registered: "+n.key),delete s[l],d&&(i=a[d])&&((r=i.length)<=1?(f(1===r),f(i[0]===l),delete a[d]):(!function(e,t){var n;for(n=e.length-1;0<=n;n--)if(e[n]===t)return e.splice(n,1)}(i,l),2===r&&e.options.clones.highlightClones&&s[i[0]].renderStatus()));return this._super(e,t,n)},nodeRenderStatus:function(e){var t,n,i=e.node;return n=this._super(e),e.options.clones.highlightClones&&(t=h(i[e.tree.statusClassPropName])).length&&i.isClone()&&t.addClass("fancytree-clone"),n},nodeSetActive:function(e,n,t){var i,r=e.tree.statusClassPropName,o=e.node;return i=this._superApply(arguments),e.options.clones.highlightActiveClones&&o.isClone()&&h.each(o.getCloneList(!0),function(e,t){h(t[r]).toggleClass("fancytree-active-clone",!1!==n)}),i}}),h.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],i):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=i(require("jquery"))):i(jQuery),r=function(w){"use strict";var l,d,N=w.ui.fancytree,c=/Mac/.test(navigator.platform),u="fancytree-drag-source",h="fancytree-drag-remove",S="fancytree-drop-accept",E="fancytree-drop-after",A="fancytree-drop-before",T="fancytree-drop-over",O="fancytree-drop-reject",P="fancytree-drop-target",y="application/x-fancytree-node",F=null,v=null,m=null,f=null,D=null,p=null,g=null,b=null,j=null,x=null;function C(){m=v=p=b=g=x=D=null,f&&f.removeClass(u+" "+h),f=null,F&&F.hide(),d&&(d.remove(),d=null)}function L(e){return 0===e?"":0 "+o),p=o),t.isMove="move"===t.dropEffect,t.files=a.files||[]}function R(e,t,n){var i=t.tree,r=t.dataTransfer;return"dragstart"!==e.type&&b!==t.effectAllowed&&i.warn("effectAllowed should only be changed in dragstart event: "+e.type+": data.effectAllowed changed from "+b+" -> "+t.effectAllowed),!1===n&&(i.info("applyDropEffectCallback: allowDrop === false"),t.effectAllowed="none",t.dropEffect="none"),t.isMove="move"===t.dropEffect,b=t.effectAllowed,g=t.dropEffect,r.effectAllowed=b,r.dropEffect=g}function _(e,t){var n,i,r,o,s,a,l,d,c;if(t.options.dnd5.scroll&&(n=t.tree,i=e,s=n.options.dnd5,a=n.$scrollParent[0],l=s.scrollSensitivity,d=s.scrollSpeed,c=0,a!==document&&"HTML"!==a.tagName?(r=n.$scrollParent.offset(),o=a.scrollTop,r.top+a.offsetHeight-i.pageYd.autoExpandMS&&(!d.dragExpand||!1!==d.dragExpand(u,f))&&u.setExpanded():x=Date.now():x=null;break;case"dragleave":if(!u){l.debug("Ignore non-node "+e.type+": "+e.target.tagName+"."+e.target.className);break}if(!w(u.span).hasClass(T)){u.debug("Ignore dragleave (multi).");break}w(u.span).removeClass(T+" "+S+" "+O),u.scheduleAction("cancel"),d.dragLeave(u,f),F.hide();break;case"drop":if(0<=w.inArray(y,h.types)&&(n=h.getData(y),l.info(e.type+": getData('application/x-fancytree-node'): '"+n+"'")),n||(n=h.getData("text"),l.info(e.type+": getData('text'): '"+n+"'")),n)try{void 0!==(t=JSON.parse(n)).title&&(f.otherNodeData=t)}catch(e){}l.debug(e.type+": nodeData: '"+n+"', otherNodeData: ",f.otherNodeData),w(u.span).removeClass(T+" "+S+" "+O),f.hitMode=j,I(e,f),f.isCancelled=!j;var p=v&&v.span,g=v&&v.tree;d.dragDrop(u,f),e.preventDefault(),p&&!document.body.contains(p)&&(g===l?(l.debug("Drop handler removed source element: generating dragEnd."),d.dragEnd(v,f)):l.warn("Drop handler removed source element: dragend event may be lost.")),C()}if(c)return e.preventDefault(),!1}return w.ui.fancytree.getDragNodeList=function(){return m||[]},w.ui.fancytree.getDragNode=function(){return v},w.ui.fancytree.registerExtension({name:"dnd5",version:"2.33.0",options:{autoExpandMS:1500,dropMarkerInsertOffsetX:-16,dropMarkerOffsetX:-24,multiSource:!1,effectAllowed:"all",dropEffectDefault:"move",preventForeignNodes:!1,preventNonNodes:!1,preventRecursion:!0,preventSameParent:!1,preventVoidMoves:!0,scroll:!0,scrollSensitivity:20,scrollSpeed:5,setTextTypeJson:!1,dragStart:null,dragDrag:w.noop,dragEnd:w.noop,dragEnter:null,dragOver:w.noop,dragExpand:w.noop,dragDrop:w.noop,dragLeave:w.noop},treeInit:function(e){var t,n=e.tree,i=e.options,r=i.glyph||null,o=i.dnd5;0<=w.inArray("dnd",i.extensions)&&w.error("Extensions 'dnd' and 'dnd5' are mutually exclusive."),o.dragStop&&w.error("dragStop is not used by ext-dnd5. Use dragEnd instead."),null!=o.preventRecursiveMoves&&w.error("preventRecursiveMoves was renamed to preventRecursion."),o.dragStart&&N.overrideMethod(e.options,"createNode",function(e,t){this._super.apply(this,arguments),t.node.span?t.node.span.draggable=!0:t.node.warn("Cannot add `draggable`: no span tag")}),this._superApply(arguments),this.$container.addClass("fancytree-ext-dnd5"),t=w("").appendTo(this.$container),this.$scrollParent=t.scrollParent(),t.remove(),(F=w("#fancytree-drop-marker")).length||(F=w("
          ").hide().css({"z-index":1e3,"pointer-events":"none"}).prependTo("body"),r&&N.setSpanIcon(F[0],r.map._addClass,r.map.dropMarker)),F.toggleClass("fancytree-rtl",!!i.rtl),o.dragStart&&n.$container.on("dragstart drag dragend",function(e){var t,n=this,i=n.options.dnd5,r=N.getNode(e),o=e.dataTransfer||e.originalEvent.dataTransfer,s={tree:n,node:r,options:n.options,originalEvent:e.originalEvent,widget:n.widget,dataTransfer:o,useDefaultImage:!0,dropEffect:void 0,dropEffectSuggested:void 0,effectAllowed:void 0,files:void 0,isCancelled:void 0,isMove:void 0};switch(e.type){case"dragstart":if(!r)return n.info("Ignored dragstart on a non-node."),!1;v=r,!1===i.multiSource?m=[r]:!0===i.multiSource?(m=n.getSelectedNodes(),r.isSelected()||m.unshift(r)):m=i.multiSource(r,s),(f=w(w.map(m,function(e){return e.span}))).addClass(u);var a=r.toDict();a.treeId=r.tree._id,t=JSON.stringify(a);try{o.setData(y,t),o.setData("text/html",w(r.span).html()),o.setData("text/plain",r.title)}catch(e){n.warn("Could not set data (IE only accepts 'text') - "+e)}return i.setTextTypeJson?o.setData("text",t):o.setData("text",r.title),I(e,s),!1===i.dragStart(r,s)?(C(),!1):(R(e,s),d=null,s.useDefaultImage&&(l=w(r.span).find(".fancytree-title"),m&&1").text("+"+(m.length-1)).appendTo(l)),o.setDragImage&&o.setDragImage(l[0],-10,-10)),!0);case"drag":I(e,s),i.dragDrag(r,s),R(e,s),f.toggleClass(h,s.isMove);break;case"dragend":I(e,s),C(),s.isCancelled=!j,i.dragEnd(r,s,!j)}}.bind(n)),o.dragEnter&&n.$container.on("dragenter dragover dragleave drop",s.bind(n))}}),w.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],r):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=r(require("jquery"))):r(jQuery),o=function(d){"use strict";var t=/Mac/.test(navigator.platform),c=d.ui.fancytree.escapeHtml,a=d.ui.fancytree.unescapeHtml;return d.ui.fancytree._FancytreeNodeClass.prototype.editStart=function(){var t,n=this,e=this.tree,i=e.ext.edit,r=e.options.edit,o=d(".fancytree-title",n.span),s={node:n,tree:e,options:e.options,isNew:d(n[e.statusClassPropName]).hasClass("fancytree-edit-new"),orgTitle:n.title,input:null,dirty:!1};if(!1===r.beforeEdit.call(n,{type:"beforeEdit"},s))return!1;d.ui.fancytree.assert(!i.currentNode,"recursive edit"),i.currentNode=this,i.eventData=s,e.widget._unbind(),i.lastDraggableAttrValue=n.span.draggable,i.lastDraggableAttrValue&&(n.span.draggable=!1),d(document).on("mousedown.fancytree-edit",function(e){d(e.target).hasClass("fancytree-edit-input")||n.editEnd(!0,e)}),t=d("",{class:"fancytree-edit-input",type:"text",value:e.options.escapeTitles?s.orgTitle:a(s.orgTitle)}),i.eventData.input=t,null!=r.adjustWidthOfs&&t.width(o.width()+r.adjustWidthOfs),null!=r.inputCss&&t.css(r.inputCss),o.html(t),t.focus().change(function(e){t.addClass("fancytree-edit-dirty")}).on("keydown",function(e){switch(e.which){case d.ui.keyCode.ESCAPE:n.editEnd(!1,e);break;case d.ui.keyCode.ENTER:return n.editEnd(!0,e),!1}e.stopPropagation()}).blur(function(e){return n.editEnd(!0,e)}),r.edit.call(n,{type:"edit"},s)},d.ui.fancytree._FancytreeNodeClass.prototype.editEnd=function(e,t){var n,i=this,r=this.tree,o=r.ext.edit,s=o.eventData,a=r.options.edit,l=d(".fancytree-title",i.span).find("input.fancytree-edit-input");return a.trim&&l.val(d.trim(l.val())),n=l.val(),s.dirty=n!==i.title,s.originalEvent=t,!1===e?s.save=!1:s.isNew?s.save=""!==n:s.save=s.dirty&&""!==n,!1!==a.beforeClose.call(i,{type:"beforeClose"},s)&&((!s.save||!1!==a.save.call(i,{type:"save"},s))&&(l.removeClass("fancytree-edit-dirty").off(),d(document).off(".fancytree-edit"),s.save?(i.setTitle(r.options.escapeTitles?n:c(n)),i.setFocus()):s.isNew?(i.remove(),i=s.node=null,o.relatedNode.setFocus()):(i.renderTitle(),i.setFocus()),o.eventData=null,o.currentNode=null,o.relatedNode=null,r.widget._bind(),o.lastDraggableAttrValue&&(i.span.draggable=!0),d(r.$container).focus(),s.input=null,a.close.call(i,{type:"close"},s),!0))},d.ui.fancytree._FancytreeNodeClass.prototype.editCreateNode=function(e,t){var n,i=this.tree,r=this;e=e||"child",null==t?t={title:""}:"string"==typeof t?t={title:t}:d.ui.fancytree.assert(d.isPlainObject(t)),"child"!==e||this.isExpanded()||!1===this.hasChildren()?((n=this.addNode(t,e)).match=!0,d(n[i.statusClassPropName]).removeClass("fancytree-hide").addClass("fancytree-match"),n.makeVisible().done(function(){d(n[i.statusClassPropName]).addClass("fancytree-edit-new"),r.tree.ext.edit.relatedNode=r,n.editStart()})):this.setExpanded().done(function(){r.editCreateNode(e,t)})},d.ui.fancytree._FancytreeClass.prototype.isEditing=function(){return this.ext.edit?this.ext.edit.currentNode:null},d.ui.fancytree._FancytreeNodeClass.prototype.isEditing=function(){return!!this.tree.ext.edit&&this.tree.ext.edit.currentNode===this},d.ui.fancytree.registerExtension({name:"edit",version:"2.33.0",options:{adjustWidthOfs:4,allowEmpty:!1,inputCss:{minWidth:"3em"},triggerStart:["f2","mac+enter","shift+click"],trim:!0,beforeClose:d.noop,beforeEdit:d.noop,close:d.noop,edit:d.noop,save:d.noop},currentNode:null,treeInit:function(e){var i=e.tree;this._superApply(arguments),this.$container.addClass("fancytree-ext-edit").on("fancytreebeforeupdateviewport",function(e,t){var n=i.isEditing();n&&(n.info("Cancel edit due to scroll event."),n.editEnd(!1,e))})},nodeClick:function(e){var t=d.ui.fancytree.eventToString(e.originalEvent),n=e.options.edit.triggerStart;return"shift+click"===t&&0<=d.inArray("shift+click",n)&&e.originalEvent.shiftKey?(e.node.editStart(),!1):"click"===t&&0<=d.inArray("clickActive",n)&&e.node.isActive()&&!e.node.isEditing()&&d(e.originalEvent.target).hasClass("fancytree-title")?(e.node.editStart(),!1):this._superApply(arguments)},nodeDblclick:function(e){return 0<=d.inArray("dblclick",e.options.edit.triggerStart)?(e.node.editStart(),!1):this._superApply(arguments)},nodeKeydown:function(e){switch(e.originalEvent.which){case 113:if(0<=d.inArray("f2",e.options.edit.triggerStart))return e.node.editStart(),!1;break;case d.ui.keyCode.ENTER:if(0<=d.inArray("mac+enter",e.options.edit.triggerStart)&&t)return e.node.editStart(),!1}return this._superApply(arguments)}}),d.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],o):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=o(require("jquery"))):o(jQuery),s=function(y){"use strict";var v="__not_found__",m=y.ui.fancytree.escapeHtml;function b(e){return(e+"").replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")}return y.ui.fancytree._FancytreeClass.prototype._applyFilterImpl=function(i,r,e){var t,n,o,s,a,l,d=0,c=this.options,u=c.escapeTitles,h=c.autoCollapse,f=y.extend({},c.filter,e),p="hide"===f.mode,g=!!f.leavesOnly&&!r;if("string"==typeof i){if(""===i)return this.warn("Fancytree passing an empty string as a filter is handled as clearFilter()."),void this.clearFilter();t=f.fuzzy?i.split("").reduce(function(e,t){return e+"[^"+t+"]*"+t}):b(i),o=new RegExp(".*"+t+".*","i"),s=new RegExp(b(i),"gi"),i=function(e){if(!e.title)return!1;var t,n=u?e.title:0<=(t=e.title).indexOf(">")?y("
          ").html(t).text():t,i=!!o.test(n);return i&&f.highlight&&(e.titleWithHighlight=u?(a=n.replace(s,function(e){return"\ufff7"+e+"\ufff8"}),m(a).replace(/\uFFF7/g,"").replace(/\uFFF8/g,"")):n.replace(s,function(e){return""+e+""})),i}}return this.enableFilter=!0,this.lastFilterArgs=arguments,l=this.enableUpdate(!1),this.$div.addClass("fancytree-ext-filter"),p?this.$div.addClass("fancytree-ext-filter-hide"):this.$div.addClass("fancytree-ext-filter-dimm"),this.$div.toggleClass("fancytree-ext-filter-hide-expanders",!!f.hideExpanders),this.rootNode.subMatchCount=0,this.visit(function(e){delete e.match,delete e.titleWithHighlight,e.subMatchCount=0}),(n=this.getRootNode()._findDirectChild(v))&&n.remove(),c.autoCollapse=!1,this.visit(function(t){if(!g||null==t.children){var e=i(t),n=!1;if("skip"===e)return t.visit(function(e){e.match=!1},!0),"skip";e||!r&&"branch"!==e||!t.parent.match||(n=e=!0),e&&(d++,t.match=!0,t.visitParents(function(e){e!==t&&(e.subMatchCount+=1),!f.autoExpand||n||e.expanded||(e.setExpanded(!0,{noAnimation:!0,noEvents:!0,scrollIntoView:!1}),e._filterAutoExpanded=!0)},!0))}}),c.autoCollapse=h,0===d&&f.nodata&&p&&(n=f.nodata,y.isFunction(n)&&(n=n()),!0===n?n={}:"string"==typeof n&&(n={title:n}),n=y.extend({statusNodeType:"nodata",key:v,title:this.options.strings.noData},n),this.getRootNode().addNode(n).match=!0),this._callHook("treeStructureChanged",this,"applyFilter"),this.enableUpdate(l),d},y.ui.fancytree._FancytreeClass.prototype.filterNodes=function(e,t){return"boolean"==typeof t&&(t={leavesOnly:t},this.warn("Fancytree.filterNodes() leavesOnly option is deprecated since 2.9.0 / 2015-04-19. Use opts.leavesOnly instead.")),this._applyFilterImpl(e,!1,t)},y.ui.fancytree._FancytreeClass.prototype.filterBranches=function(e,t){return this._applyFilterImpl(e,!0,t)},y.ui.fancytree._FancytreeClass.prototype.clearFilter=function(){var t,e=this.getRootNode()._findDirectChild(v),n=this.options.escapeTitles,i=this.options.enhanceTitle,r=this.enableUpdate(!1);e&&e.remove(),delete this.rootNode.match,delete this.rootNode.subMatchCount,this.visit(function(e){e.match&&e.span&&(t=y(e.span).find(">span.fancytree-title"),n?t.text(e.title):t.html(e.title),i&&i({type:"enhanceTitle"},{node:e,$title:t})),delete e.match,delete e.subMatchCount,delete e.titleWithHighlight,e.$subMatchBadge&&(e.$subMatchBadge.remove(),delete e.$subMatchBadge),e._filterAutoExpanded&&e.expanded&&e.setExpanded(!1,{noAnimation:!0,noEvents:!0,scrollIntoView:!1}),delete e._filterAutoExpanded}),this.enableFilter=!1,this.lastFilterArgs=null,this.$div.removeClass("fancytree-ext-filter fancytree-ext-filter-dimm fancytree-ext-filter-hide"),this._callHook("treeStructureChanged",this,"clearFilter"),this.enableUpdate(r)},y.ui.fancytree._FancytreeClass.prototype.isFilterActive=function(){return!!this.enableFilter},y.ui.fancytree._FancytreeNodeClass.prototype.isMatched=function(){return!(this.tree.enableFilter&&!this.match)},y.ui.fancytree.registerExtension({name:"filter",version:"2.33.0",options:{autoApply:!0,autoExpand:!1,counter:!0,fuzzy:!1,hideExpandedCounter:!0,hideExpanders:!1,highlight:!0,leavesOnly:!1,nodata:!0,mode:"dimm"},nodeLoadChildren:function(e,t){var n=e.tree;return this._superApply(arguments).done(function(){n.enableFilter&&n.lastFilterArgs&&e.options.filter.autoApply&&n._applyFilterImpl.apply(n,n.lastFilterArgs)})},nodeSetExpanded:function(e,t,n){var i=e.node;return delete i._filterAutoExpanded,!t&&e.options.filter.hideExpandedCounter&&i.$subMatchBadge&&i.$subMatchBadge.show(),this._superApply(arguments)},nodeRenderStatus:function(e){var t,n=e.node,i=e.tree,r=e.options.filter,o=y(n.span).find("span.fancytree-title"),s=y(n[i.statusClassPropName]),a=e.options.enhanceTitle,l=e.options.escapeTitles;return t=this._super(e),s.length&&i.enableFilter&&(s.toggleClass("fancytree-match",!!n.match).toggleClass("fancytree-submatch",!!n.subMatchCount).toggleClass("fancytree-hide",!(n.match||n.subMatchCount)),!r.counter||!n.subMatchCount||n.isExpanded()&&r.hideExpandedCounter?n.$subMatchBadge&&n.$subMatchBadge.hide():(n.$subMatchBadge||(n.$subMatchBadge=y(""),y("span.fancytree-icon, span.fancytree-custom-icon",n.span).append(n.$subMatchBadge)),n.$subMatchBadge.show().text(n.subMatchCount)),!n.span||n.isEditing&&n.isEditing.call(n)||(n.titleWithHighlight?o.html(n.titleWithHighlight):l?o.text(n.title):o.html(n.title),a&&a({type:"enhanceTitle"},{node:n,$title:o}))),t}}),y.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],s):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=s(require("jquery"))):s(jQuery),a=function(d){"use strict";var a=d.ui.fancytree,i={awesome3:{_addClass:"",checkbox:"icon-check-empty",checkboxSelected:"icon-check",checkboxUnknown:"icon-check icon-muted",dragHelper:"icon-caret-right",dropMarker:"icon-caret-right",error:"icon-exclamation-sign",expanderClosed:"icon-caret-right",expanderLazy:"icon-angle-right",expanderOpen:"icon-caret-down",loading:"icon-refresh icon-spin",nodata:"icon-meh",noExpander:"",radio:"icon-circle-blank",radioSelected:"icon-circle",doc:"icon-file-alt",docOpen:"icon-file-alt",folder:"icon-folder-close-alt",folderOpen:"icon-folder-open-alt"},awesome4:{_addClass:"fa",checkbox:"fa-square-o",checkboxSelected:"fa-check-square-o",checkboxUnknown:"fa-square fancytree-helper-indeterminate-cb",dragHelper:"fa-arrow-right",dropMarker:"fa-long-arrow-right",error:"fa-warning",expanderClosed:"fa-caret-right",expanderLazy:"fa-angle-right",expanderOpen:"fa-caret-down",loading:{html:""},nodata:"fa-meh-o",noExpander:"",radio:"fa-circle-thin",radioSelected:"fa-circle",doc:"fa-file-o",docOpen:"fa-file-o",folder:"fa-folder-o",folderOpen:"fa-folder-open-o"},awesome5:{_addClass:"",checkbox:"far fa-square",checkboxSelected:"far fa-check-square",checkboxUnknown:"fas fa-square fancytree-helper-indeterminate-cb",radio:"far fa-circle",radioSelected:"fas fa-circle",radioUnknown:"far fa-dot-circle",dragHelper:"fas fa-arrow-right",dropMarker:"fas fa-long-arrow-alt-right",error:"fas fa-exclamation-triangle",expanderClosed:"fas fa-caret-right",expanderLazy:"fas fa-angle-right",expanderOpen:"fas fa-caret-down",loading:"fas fa-spinner fa-pulse",nodata:"far fa-meh",noExpander:"",doc:"far fa-file",docOpen:"far fa-file",folder:"far fa-folder",folderOpen:"far fa-folder-open"},bootstrap3:{_addClass:"glyphicon",checkbox:"glyphicon-unchecked",checkboxSelected:"glyphicon-check",checkboxUnknown:"glyphicon-expand fancytree-helper-indeterminate-cb",dragHelper:"glyphicon-play",dropMarker:"glyphicon-arrow-right",error:"glyphicon-warning-sign",expanderClosed:"glyphicon-menu-right",expanderLazy:"glyphicon-menu-right",expanderOpen:"glyphicon-menu-down",loading:"glyphicon-refresh fancytree-helper-spin",nodata:"glyphicon-info-sign",noExpander:"",radio:"glyphicon-remove-circle",radioSelected:"glyphicon-ok-circle",doc:"glyphicon-file",docOpen:"glyphicon-file",folder:"glyphicon-folder-close",folderOpen:"glyphicon-folder-open"},material:{_addClass:"material-icons",checkbox:{text:"check_box_outline_blank"},checkboxSelected:{text:"check_box"},checkboxUnknown:{text:"indeterminate_check_box"},dragHelper:{text:"play_arrow"},dropMarker:{text:"arrow-forward"},error:{text:"warning"},expanderClosed:{text:"chevron_right"},expanderLazy:{text:"last_page"},expanderOpen:{text:"expand_more"},loading:{text:"autorenew",addClass:"fancytree-helper-spin"},nodata:{text:"info"},noExpander:{text:""},radio:{text:"radio_button_unchecked"},radioSelected:{text:"radio_button_checked"},doc:{text:"insert_drive_file"},docOpen:{text:"insert_drive_file"},folder:{text:"folder"},folderOpen:{text:"folder_open"}}};function l(e,t,n,i){var r=n.map,o=r[i],s=d(e),a=s.find(".fancytree-childcounter"),l=t+" "+(r._addClass||"");"string"==typeof o?(e.innerHTML="",s.attr("class",l+" "+o).append(a)):o&&(o.text?e.textContent=""+o.text:o.html?e.innerHTML=o.html:e.innerHTML="",s.attr("class",l+" "+(o.addClass||"")).append(a))}return d.ui.fancytree.registerExtension({name:"glyph",version:"2.33.0",options:{preset:null,map:{}},treeInit:function(e){var t=e.tree,n=e.options.glyph;n.preset?(a.assert(!!i[n.preset],"Invalid value for `options.glyph.preset`: "+n.preset),n.map=d.extend({},i[n.preset],n.map)):t.warn("ext-glyph: missing `preset` option."),this._superApply(arguments),t.$container.addClass("fancytree-ext-glyph")},nodeRenderStatus:function(e){var t,n,i,r=e.node,o=d(r.span),s=e.options.glyph;return n=this._super(e),r.isRoot()||((i=o.children("span.fancytree-expander").get(0))&&l(i,"fancytree-expander",s,r.expanded&&r.hasChildren()?"expanderOpen":r.isUndefined()?"expanderLazy":r.hasChildren()?"expanderClosed":"noExpander"),(i=r.tr?d("td",r.tr).find("span.fancytree-checkbox").get(0):o.children("span.fancytree-checkbox").get(0))&&(t=a.evalOption("checkbox",r,r,s,!1),r.parent&&r.parent.radiogroup||"radio"===t?l(i,"fancytree-checkbox fancytree-radio",s,r.selected?"radioSelected":"radio"):l(i,"fancytree-checkbox",s,r.selected?"checkboxSelected":r.partsel?"checkboxUnknown":"checkbox")),(i=o.children("span.fancytree-icon").get(0))&&l(i,"fancytree-icon",s,r.statusNodeType?r.statusNodeType:r.folder?r.expanded&&r.hasChildren()?"folderOpen":"folder":r.expanded?"docOpen":"doc")),n},nodeSetStatus:function(e,t,n,i){var r,o,s=e.options.glyph,a=e.node;return r=this._superApply(arguments),"error"!==t&&"loading"!==t&&"nodata"!==t||(a.parent?(o=d("span.fancytree-expander",a.span).get(0))&&l(o,"fancytree-expander",s,t):(o=d(".fancytree-statusnode-"+t,a[this.nodeContainerAttrName]).find("span.fancytree-icon").get(0))&&l(o,"fancytree-icon",s,t)),r}}),d.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],a):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=a(require("jquery"))):a(jQuery),l=function(c){"use strict";var u=c.ui.keyCode,a={text:[u.UP,u.DOWN],checkbox:[u.UP,u.DOWN,u.LEFT,u.RIGHT],link:[u.UP,u.DOWN,u.LEFT,u.RIGHT],radiobutton:[u.UP,u.DOWN,u.LEFT,u.RIGHT],"select-one":[u.LEFT,u.RIGHT],"select-multiple":[u.LEFT,u.RIGHT]};function h(e,t){var n,i=null,r=0;return e.children().each(function(){if(t<=r)return i=c(this),!1;n=c(this).prop("colspan"),r+=n||1}),i}function l(e,t){var n,i,r,o,s,a,l=e.closest("td"),d=null;switch(t){case u.LEFT:d=l.prev();break;case u.RIGHT:d=l.next();break;case u.UP:case u.DOWN:for(n=l.parent(),r=n,s=l.get(0),a=0,r.children().each(function(){if(this===s)return!1;o=c(this).prop("colspan"),a+=o||1}),i=a;(n=t===u.UP?n.prev():n.next()).length&&(n.is(":hidden")||!(d=h(n,i))||!d.find(":input,a").length););}return d}return c.ui.fancytree.registerExtension({name:"gridnav",version:"2.33.0",options:{autofocusInput:!1,handleCursorKeys:!0},treeInit:function(i){this._requireExtension("table",!0,!0),this._superApply(arguments),this.$container.addClass("fancytree-ext-gridnav"),this.$container.on("focusin",function(e){var t,n=c.ui.fancytree.getNode(e.target);n&&!n.isActive()&&(t=i.tree._makeHookContext(n,e),i.tree._callHook("nodeSetActive",t,!0))})},nodeSetActive:function(e,t,n){var i=e.options.gridnav,r=e.node,o=e.originalEvent||{},s=c(o.target).is(":input");t=!1!==t,this._superApply(arguments),t&&(e.options.titlesTabbable?(s||(c(r.span).find("span.fancytree-title").focus(),r.setFocus()),e.tree.$container.attr("tabindex","-1")):i.autofocusInput&&!s&&c(r.tr||r.span).find(":input:enabled").first().focus())},nodeKeydown:function(e){var t,n,i,r=e.options.gridnav,o=e.originalEvent,s=c(o.target);return s.is(":input:enabled")?t=s.prop("type"):s.is("a")&&(t="link"),t&&r.handleCursorKeys?!((n=a[t])&&0<=c.inArray(o.which,n)&&(i=l(s,o.which))&&i.length)||(i.find(":input:enabled,a").focus(),!1):this._superApply(arguments)}}),c.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree","./jquery.fancytree.table"],l):"object"==typeof module&&module.exports?(require("./jquery.fancytree.table"),module.exports=l(require("jquery"))):l(jQuery),d=function(s){"use strict";return s.ui.fancytree.registerExtension({name:"multi",version:"2.33.0",options:{allowNoSelect:!1,mode:"sameParent"},treeInit:function(e){this._superApply(arguments),this.$container.addClass("fancytree-ext-multi"),1===e.options.selectMode&&s.error("Fancytree ext-multi: selectMode: 1 (single) is not compatible.")},nodeClick:function(e){var t=e.tree,n=e.node,i=t.getActiveNode()||t.getFirstChild(),r="checkbox"===e.targetType,o="expander"===e.targetType;switch(s.ui.fancytree.eventToString(e.originalEvent)){case"click":if(o)break;r||(t.selectAll(!1),n.setSelected());break;case"shift+click":t.visitRows(function(e){if(e.setSelected(),e===n)return!1},{start:i,reverse:i.isBelowOf(n)});break;case"ctrl+click":case"meta+click":return void n.toggleSelected()}return this._superApply(arguments)},nodeKeydown:function(e){var t=e.tree,n=e.node,i=e.originalEvent;switch(s.ui.fancytree.eventToString(i)){case"up":case"down":t.selectAll(!1),n.navigate(i.which,!0),t.getActiveNode().setSelected();break;case"shift+up":case"shift+down":n.navigate(i.which,!0),t.getActiveNode().setSelected()}return this._superApply(arguments)}}),s.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],d):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=d(require("jquery"))):d(jQuery),c=function(p){"use strict";var t=null,n=window.localStorage?{get:function(e){return window.localStorage.getItem(e)},set:function(e,t){window.localStorage.setItem(e,t)},remove:function(e){window.localStorage.removeItem(e)}}:null,i=window.sessionStorage?{get:function(e){return window.sessionStorage.getItem(e)},set:function(e,t){window.sessionStorage.setItem(e,t)},remove:function(e){window.sessionStorage.removeItem(e)}}:null,r=p.ui.fancytree.assert,u="active",g="expanded",h="focus",f="selected";return"function"==typeof Cookies?t={get:Cookies.get,set:function(e,t){Cookies.set(e,t,this.options.persist.cookie)},remove:Cookies.remove}:p&&"function"==typeof p.cookie&&(t={get:p.cookie,set:function(e,t){p.cookie.set(e,t,this.options.persist.cookie)},remove:p.removeCookie}),p.ui.fancytree._FancytreeClass.prototype.clearPersistData=function(e){var t=this.ext.persist,n=t.cookiePrefix;0<=(e=e||"active expanded focus selected").indexOf(u)&&t._data(n+u,null),0<=e.indexOf(g)&&t._data(n+g,null),0<=e.indexOf(h)&&t._data(n+h,null),0<=e.indexOf(f)&&t._data(n+f,null)},p.ui.fancytree._FancytreeClass.prototype.clearCookies=function(e){return this.warn("'tree.clearCookies()' is deprecated since v2.27.0: use 'clearPersistData()' instead."),this.clearPersistData(e)},p.ui.fancytree._FancytreeClass.prototype.getPersistData=function(){var e=this.ext.persist,t=e.cookiePrefix,n=e.cookieDelimiter,i={};return i[u]=e._data(t+u),i[g]=(e._data(t+g)||"").split(n),i[f]=(e._data(t+f)||"").split(n),i[h]=e._data(t+h),i},p.ui.fancytree.registerExtension({name:"persist",version:"2.33.0",options:{cookieDelimiter:"~",cookiePrefix:void 0,cookie:{raw:!1,expires:"",path:"",domain:"",secure:!1},expandLazy:!1,expandOpts:void 0,fireActivate:!0,overrideSource:!0,store:"auto",types:"active expanded focus selected"},_data:function(e,t){var n=this._local.store;if(void 0===t)return n.get.call(this,e);null===t?n.remove.call(this,e):n.set.call(this,e,t)},_appendKey:function(e,t,n){t=""+t;var i=this._local,r=this.options.persist.cookieDelimiter,o=i.cookiePrefix+e,s=i._data(o),a=s?s.split(r):[],l=p.inArray(t,a);0<=l&&a.splice(l,1),n&&a.push(t),i._data(o,a.join(r))},treeInit:function(e){var a=e.tree,l=e.options,d=this._local,c=this.options.persist;return d.cookiePrefix=c.cookiePrefix||"fancytree-"+a._id+"-",d.storeActive=0<=c.types.indexOf(u),d.storeExpanded=0<=c.types.indexOf(g),d.storeSelected=0<=c.types.indexOf(f),d.storeFocus=0<=c.types.indexOf(h),d.store=null,"auto"===c.store&&(c.store=n?"local":"cookie"),p.isPlainObject(c.store)?d.store=c.store:"cookie"===c.store?d.store=t:"local"===c.store?d.store="local"===c.store?n:i:"session"===c.store&&(d.store="local"===c.store?n:i),r(d.store,"Need a valid store."),a.$div.on("fancytreeinit",function(e){if(!1!==a._triggerTreeEvent("beforeRestore",null,{})){var t,n,i,r,o=d._data(d.cookiePrefix+h),s=!1===c.fireActivate;t=d._data(d.cookiePrefix+g),i=t&&t.split(c.cookieDelimiter),(d.storeExpanded?function e(t,n,i,r,o){var s,a,l,d,c=!1,u=t.options.persist.expandOpts,h=[],f=[];for(i=i||[],o=o||p.Deferred(),s=0,l=i.length;stbody")).length||(l.find(">tr").length&&C.error("Expected table > tbody > tr. If you see this please open an issue."),r=C("").appendTo(l)),o.tbody=r[0],o.columnCount=C("thead >tr",l).last().find(">th",l).length,(i=r.children("tr").first()).length)n=i.children("td").length,o.columnCount&&n!==o.columnCount&&(o.warn("Column count mismatch between thead ("+o.columnCount+") and tbody ("+n+"): using tbody."),o.columnCount=n),i=i.clone();else for(_(1<=o.columnCount,"Need either or with elements to determine column count."),i=C(""),t=0;t");i.find(">td").eq(a.nodeColumnIdx).html(""),s.aria&&(i.attr("role","row"),i.find("td").attr("role","gridcell")),o.rowFragment=document.createDocumentFragment(),o.rowFragment.appendChild(i.get(0)),r.empty(),o.statusClassPropName="tr",o.ariaPropName="tr",this.nodeContainerAttrName="tr",o.$container=l,this._superApply(arguments),C(o.rootNode.ul).remove(),o.rootNode.ul=null,this.$container.attr("tabindex",s.tabindex),s.aria&&o.$container.attr("role","treegrid").attr("aria-readonly",!0)},nodeRemoveChildMarkup:function(e){e.node.visit(function(e){e.tr&&(C(e.tr).remove(),e.tr=null)})},nodeRemoveMarkup:function(e){var t=e.node;t.tr&&(C(t.tr).remove(),t.tr=null),this.nodeRemoveChildMarkup(e)},nodeRender:function(e,t,n,i,r){var o,s,a,l,d,c,u,h,f=e.tree,p=e.node,g=e.options,y=!p.parent;if(!1!==f._enableUpdate){if(r||(e.hasCollapsedParents=p.parent&&!p.parent.expanded),!y)if(p.tr&&t&&this.nodeRemoveMarkup(e),p.tr)t?this.nodeRenderTitle(e):this.nodeRenderStatus(e);else{if(e.hasCollapsedParents&&!n)return;d=f.rowFragment.firstChild.cloneNode(!0),_(c=function(e){var t,n,i=e.parent,r=i?i.children:null;if(r&&1td").eq(0).prop("colspan",r.columnCount).text(o.title).addClass("fancytree-status-merged").nextAll().remove():s.renderColumns&&s.renderColumns.call(r,{type:"renderColumns"},e)),i},nodeRenderStatus:function(e){var t,n=e.node,i=e.options;this._super(e),C(n.tr).removeClass("fancytree-node"),t=(n.getLevel()-1)*i.table.indentation,i.rtl?C(n.span).css({paddingRight:t+"px"}):C(n.span).css({paddingLeft:t+"px"})},nodeSetExpanded:function(t,n,i){if(n=!1!==n,t.node.expanded&&n||!t.node.expanded&&!n)return this._superApply(arguments);var r=new C.Deferred,e=C.extend({},i,{noEvents:!0,noAnimation:!0});function o(e){k(t.node,n),e?n&&t.options.autoScroll&&!i.noAnimation&&t.node.hasChildren()?t.node.getLastChild().scrollIntoView(!0,{topNode:t.node}).always(function(){i.noEvents||t.tree._triggerNodeEvent(n?"expand":"collapse",t),r.resolveWith(t.node)}):(i.noEvents||t.tree._triggerNodeEvent(n?"expand":"collapse",t),r.resolveWith(t.node)):(i.noEvents||t.tree._triggerNodeEvent(n?"expand":"collapse",t),r.rejectWith(t.node))}return i=i||{},this._super(t,n,e).done(function(){o(!0)}).fail(function(){o(!1)}),r.promise()},nodeSetStatus:function(e,t,n,i){if("ok"===t){var r=e.node,o=r.children?r.children[0]:null;o&&o.isStatusNode()&&C(o.tr).remove()}return this._superApply(arguments)},treeClear:function(e){return this.nodeRemoveChildMarkup(this._makeHookContext(this.rootNode)),this._superApply(arguments)},treeDestroy:function(e){return this.$container.find("tbody").empty(),this.$source&&this.$source.removeClass("fancytree-helper-hidden"),this._superApply(arguments)}}),C.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],u):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=u(require("jquery"))):u(jQuery),h=function(o){"use strict";return o.ui.fancytree.registerExtension({name:"themeroller",version:"2.33.0",options:{activeClass:"ui-state-active",addClass:"ui-corner-all",focusClass:"ui-state-focus",hoverClass:"ui-state-hover",selectedClass:"ui-state-highlight"},treeInit:function(e){var t=e.widget.element,i=e.options.themeroller;this._superApply(arguments),"TABLE"===t[0].nodeName?(t.addClass("ui-widget ui-corner-all"),t.find(">thead tr").addClass("ui-widget-header"),t.find(">tbody").addClass("ui-widget-conent")):t.addClass("ui-widget ui-widget-content ui-corner-all"),t.on("mouseenter mouseleave",".fancytree-node",function(e){var t=o.ui.fancytree.getNode(e.target),n="mouseenter"===e.type;o(t.tr?t.tr:t.span).toggleClass(i.hoverClass+" "+i.addClass,n)})},treeDestroy:function(e){this._superApply(arguments),e.widget.element.removeClass("ui-widget ui-widget-content ui-corner-all")},nodeRenderStatus:function(e){var t={},n=e.node,i=o(n.tr?n.tr:n.span),r=e.options.themeroller;this._super(e),t[r.activeClass]=!1,t[r.focusClass]=!1,t[r.selectedClass]=!1,n.isActive()&&(t[r.activeClass]=!0),n.hasFocus()&&(t[r.focusClass]=!0),n.isSelected()&&!n.isActive()&&(t[r.selectedClass]=!0),i.toggleClass(r.activeClass,t[r.activeClass]),i.toggleClass(r.focusClass,t[r.focusClass]),i.toggleClass(r.selectedClass,t[r.selectedClass]),i.addClass(r.addClass)}}),o.ui.fancytree},"function"==typeof define&&define.amd?define(["jquery","./jquery.fancytree"],h):"object"==typeof module&&module.exports?(require("./jquery.fancytree"),module.exports=h(require("jquery"))):h(jQuery),f=function(p){"use strict";var g=/^([+-]?(?:\d+|\d*\.\d+))([a-z]*|%)$/;function y(e,t){var n=p("#"+(e="fancytree-style-"+e));if(!t)return n.remove(),null;n.length||(n=p("