Skip to content

Commit c7460ae

Browse files
author
Jessica Wang
committed
bug 12966: domain page (tree-view) - remove search box since no place to show searching results in a tree.
1 parent 5eea6a5 commit c7460ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/scripts/ui/widgets/treeView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@
4646
.addClass('text-search')
4747
.append(
4848
$('<div>')
49-
.addClass('search-bar')
49+
.addClass('search-bar').attr('style', 'display:none') //no place to show search result in a tree, so hide it for now
5050
.append(
5151
$('<input>').attr('type', 'text')
5252
)
5353
)
5454
.append(
55-
$('<div>').addClass('button search')
55+
$('<div>').addClass('button search').attr('style', 'display:none') //no place to show search result in a tree, so hide it for now
5656
)
5757
)
5858
.prependTo($treeView);

0 commit comments

Comments
 (0)