thatcher / openseadragon

This project has moved to its new github organization at github.com/openseadragon, please join us!
http://openseadragon,github.com/
37 stars 14 forks source link

Drawer TIMEOUT should be configurable #17

Closed bgilbert closed 11 years ago

bgilbert commented 12 years ago

Drawer's tile fetch TIMEOUT should be configurable, not hardcoded in a closure where the application can't get to it.

(Our application generates tiles on-demand on the server, and sometimes tile generation takes longer than 5 seconds. The viewer then replaces the scaled, lower-resolution tile with an ugly black box.)

thatcher commented 11 years ago

good idea. I can make this configurable. Done in my local trunk, will commit soon and ping this ticket.

thatcher commented 11 years ago

Its done, please check out version 0.9.97 (I know we dont have tags yet but it is very high on the list for our build/distribution cycle development). Embarrassing I know, Ian Gilman whom is one of the original developers is currently helping reorganize this project and is doing a great job answering tickets, itegrating pull requests, and communicating the vision.

Again, thanks for the intellectual work and the ticket especially. Please, any feedback is appreciated if this doesnt work for you.

Thanks, Thatcher

Example usage:

OpenSeadragon({ ...., timeout: 5000, //milliseconds .... });

bgilbert commented 11 years ago

Works great, thanks!