Hi ccrookston,
Try this way
1. Open file "CuteSoft_Client\Gallery\Viewer\LightBox\Code.js "
2. Find section below
var imgwidth=Math.floor(photo.Width*scale);
var imgheight=Math.floor(photo.Height*scale);
3. Change to
var imgwidth=Math.floor(photo.Width*);
var imgheight=Math.floor(photo.Height);
4. Find section below
this.frame.onclick=ToDelegate(this,function(event){
ShowPrevNext(event);
if(this.prevbtn.style.display=="")
{
var p=this.GetPrevPhoto(photo);
if(p)this.Show(p);
}
if(this.nextbtn.style.display=="")
{
var p=this.GetNextPhoto(photo);
if(p)this.Show(p);
}
});
5. Change to
this.frame.onclick=ToDelegate(this,function(event){
if(this.prevbtn.style.display=="")
{
var p=this.GetPrevPhoto(photo);
if(p)this.Show(p);
}
if(this.nextbtn.style.display=="")
{
var p=this.GetNextPhoto(photo);
if(p)this.Show(p);
}
});
Regards,
ken