joeblack9988 / slideshow

Automatically exported from code.google.com/p/slideshow
0 stars 0 forks source link

start gallery with paused=true #170

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. var myShow = new Slideshow('jpgGallery_show', images, {controller: true, 
height: 300, width: 400, paused: true, duration:1000});

What is the expected output? What do you see instead?
The gallery should start with pause turned on.

What version of the product are you using? On what operating system and
browser?
winxp, ff 3.6.15

in slideshow.js, line 73, where "this.paused = false;", should be:
this.paused = options.paused;

Original issue reported on code.google.com by mkanc...@gmail.com on 4 Apr 2011 at 10:53

GoogleCodeExporter commented 8 years ago
in slideshow.js, line 73, where "this.paused = false;", should be:
this.paused = options.paused;

Original comment by mkanc...@gmail.com on 4 Apr 2011 at 10:54

GoogleCodeExporter commented 8 years ago

Original comment by aeron.gl...@gmail.com on 4 Apr 2011 at 1:54

GoogleCodeExporter commented 8 years ago
Actually that's not the case. If this.options.paused is true, the slideshow is 
paused after the first image is loaded (search for "firstrun"). If the paused 
is set as described in this issue the first image will never load.

Original comment by aeron.gl...@gmail.com on 10 Apr 2011 at 10:58