Fixing js strict warning about redeclaration of var. sr=ben

git-svn-id: svn://10.0.0.236/trunk@104293 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blakeross%telocity.com
2001-10-01 03:42:42 +00:00
parent ac9ca59ac3
commit 8d0070d650

View File

@@ -679,9 +679,9 @@
// we want to use the default item index for the first session which gave us a valid
// default item index...
var results;
for (var name in this.mLastResults) {
var results = this.mLastResults[name];
results = this.mLastResults[name];
if (results && results.items.Count() > 0 && results.defaultItemIndex != -1)
{
defaultSession = name;
@@ -690,7 +690,7 @@
}
if (defaultSession) {
var results = this.mLastResults[defaultSession];
results = this.mLastResults[defaultSession];
if (results && !this.noMatch)
if (results.defaultItemIndex != -1)
this.value = this.getSessionValueAt(defaultSession, results.defaultItemIndex);