diff options
Diffstat (limited to 'program/js/treelist.js')
-rw-r--r-- | 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 5071026f1..916cf0e2d 100644 --- a/program/js/treelist.js +++ b/program/js/treelist.js @@ -93,6 +93,7 @@ function rcube_treelist_widget(node, p) 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 rcube_treelist_widget(node, p) } /** + * + */ + function is_search() + { + return search_active; + } + + /** * Render the tree list from the internal data structure */ function render() |