the JQuery selector for finding the "Start upload" button is searching for an "input"-element. We are using "button"-elements on out site, so the selector doesn't work. I think a more general selector would quite be good here:

var $submit = $(this).closest('.filefield-source-plupload').find('input.form-submit');
var $submit = $(this).closest('.filefield-source-plupload').find('.form-submit');

CommentFileSizeAuthor
input_selector.patch582 bytesAnonymous (not verified)

Comments

webcultist’s picture

In our case we themed the input as button. The button tag is much better themable and easier to use.
Described here: theme_button
and
here:

atlea’s picture

Status: Active » Fixed

This is now added to latest dev-release. Thanks! :)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.