bug 190353: Property "pageIndex" of "wizard" tag is not working. r=neil

This commit is contained in:
db48x%yahoo.com 2006-05-12 23:58:39 +00:00
parent 28a533ac47
commit 49558c479e
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@
<setter>
<![CDATA[
if (val < 0 || val >= this.pageCount)
return;
return val;
var page = this.wizardPages[val];
this._pageStack[this._pageStack.length-1] = page;

View File

@ -95,7 +95,7 @@
<setter>
<![CDATA[
if (val < 0 || val >= this.pageCount)
return;
return val;
var page = this.wizardPages[val];
this._pageStack[this._pageStack.length-1] = page;