Topic: How to alter settings after init?
Lets say I have a $("#uploader").plupload({settings....}); call to init the UI widget. I also have a dropdown pair for selecting the resize height and width. The init settings has:
resize : {
width : 800,
height : 800,
quality : 95,
crop: false
},
How would I go about altering the resize height and width when the user changes the dropdown?
And does the client resize happen when the file is dropped on the widget or does it happen when the upload is started?