referencestrip.js: move variable declaration to the top of loadPanels

This commit is contained in:
Chris Adams 2013-06-19 14:14:09 -04:00
parent eafc822aa8
commit 0d09183159

View File

@ -387,7 +387,8 @@ function loadPanels(strip, viewerSize, scroll){
activePanelsEnd, activePanelsEnd,
miniViewer, miniViewer,
style, style,
i; i,
element;
if( 'horizontal' == strip.scroll ){ if( 'horizontal' == strip.scroll ){
panelSize = strip.panelWidth; panelSize = strip.panelWidth;
}else{ }else{
@ -399,7 +400,7 @@ function loadPanels(strip, viewerSize, scroll){
activePanelsStart = activePanelsStart < 0 ? 0 : activePanelsStart; activePanelsStart = activePanelsStart < 0 ? 0 : activePanelsStart;
for( i = activePanelsStart; i < activePanelsEnd && i < strip.panels.length; i++ ){ for( i = activePanelsStart; i < activePanelsEnd && i < strip.panels.length; i++ ){
var element = strip.panels[ i ]; element = strip.panels[ i ];
if ( !element.activePanel ){ if ( !element.activePanel ){
miniViewer = new $.Viewer( { miniViewer = new $.Viewer( {
id: element.id, id: element.id,