Merge pull request #595 from Jondeen/master

Fixed x/y typo in reference strip.
This commit is contained in:
Ian Gilman 2015-02-10 10:40:13 -08:00
commit df73e1516a

View File

@ -224,7 +224,7 @@ $.ReferenceStrip = function ( options ) {
this.panels.push( element ); this.panels.push( element );
} }
loadPanels( this, this.scroll == 'vertical' ? viewerSize.y : viewerSize.y, 0 ); loadPanels( this, this.scroll == 'vertical' ? viewerSize.y : viewerSize.x, 0 );
this.setFocus( 0 ); this.setFocus( 0 );
}; };