bug 12966: domain page (tree-view) - remove search box since no place to show searching results in a tree.

This commit is contained in:
Jessica Wang 2012-02-01 14:06:47 -08:00
parent 5eea6a5c3c
commit c7460ae962
1 changed files with 2 additions and 2 deletions

View File

@ -46,13 +46,13 @@
.addClass('text-search')
.append(
$('<div>')
.addClass('search-bar')
.addClass('search-bar').attr('style', 'display:none') //no place to show search result in a tree, so hide it for now
.append(
$('<input>').attr('type', 'text')
)
)
.append(
$('<div>').addClass('button search')
$('<div>').addClass('button search').attr('style', 'display:none') //no place to show search result in a tree, so hide it for now
)
)
.prependTo($treeView);