Skip to content
Snippets Groups Projects
Commit 9adcfbf9 authored by Vijay Mani's avatar Vijay Mani Committed by Aaron Ferris
Browse files

Issue #2777779 by vijaycs85, aaron.ferris: 'Browse' option not firing file...

Issue #2777779 by vijaycs85, aaron.ferris: 'Browse' option not firing file upload on multilingual sites
parent 96eeac14
No related branches found
No related tags found
No related merge requests found
...@@ -25,9 +25,11 @@ ...@@ -25,9 +25,11 @@
$('.form-type-managed-file input.form-file', context).change(function() { $('.form-type-managed-file input.form-file', context).change(function() {
var $parent = $(this).parent().parent(); var $parent = $(this).parent().parent();
if ($parent.find('.file-chooser-field-wrapper').length) { if ($parent.find('.file-chooser-field-wrapper').length) {
var uploadText = Drupal.t('Upload');
setTimeout(function() { setTimeout(function() {
if(!$('.error', $parent).length) { if(!$('.error', $parent).length) {
$('input.form-submit[value=Upload]', $parent).mousedown(); $('input.form-submit[value=' + uploadText + ']', $parent).mousedown();
$('.button', $parent).unbind().addClass('disabled'); $('.button', $parent).unbind().addClass('disabled');
} }
}, 100); }, 100);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment