зеркало из https://github.com/mozilla/pjs.git
- cview only, not part of the build -
change rec.show() to rec.unHide(), because there is no such thing as rec.show()
This commit is contained in:
Родитель
66ae1bdf88
Коммит
3e58ef9ae7
|
@ -121,7 +121,7 @@ function filterInterfaces()
|
|||
function filterAll (rec)
|
||||
{
|
||||
if (rec.isHidden)
|
||||
rec.show();
|
||||
rec.unHide();
|
||||
cview.visibleInterfaces++;
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ function filterInterfaces()
|
|||
if (rec.name.search(cview.interfaceFilter) != -1)
|
||||
{
|
||||
if (rec.isHidden)
|
||||
rec.show();
|
||||
rec.unHide();
|
||||
cview.visibleInterfaces++;
|
||||
}
|
||||
else
|
||||
|
@ -145,7 +145,7 @@ function filterInterfaces()
|
|||
if (rec.name.search(cview.interfaceFilter) == 0)
|
||||
{
|
||||
if (rec.isHidden)
|
||||
rec.show();
|
||||
rec.unHide();
|
||||
cview.visibleInterfaces++;
|
||||
}
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче