From 00dd283999fd42870bc2ea8412a4e39f7c52060c Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Thu, 07 Aug 2014 12:00:31 -0400 Subject: [PATCH] Getter to detect if treelist widget is in search mode --- program/js/treelist.js | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/program/js/treelist.js b/program/js/treelist.js index 5071026..916cf0e 100644 --- a/program/js/treelist.js +++ b/program/js/treelist.js @@ -93,6 +93,7 @@ this.get_item = get_item; this.get_node = get_node; this.get_selection = get_selection; + this.is_search = is_search; /////// startup code (constructor) @@ -575,6 +576,14 @@ } /** + * + */ + function is_search() + { + return search_active; + } + + /** * Render the tree list from the internal data structure */ function render() -- Gitblit v1.9.1