From: Arthur Schiwon Date: Tue, 19 Apr 2011 06:05:08 +0000 (+0200) Subject: upload works in a not so fancy way for konqueror and rekonq X-Git-Tag: v3.0~267^2~558^2~39 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=07c6c7f4fac4323122daf05f63ccf9152a709afb;p=nextcloud-server.git upload works in a not so fancy way for konqueror and rekonq --- diff --git a/files/js/files.js b/files/js/files.js index c0905f4af9d..3ab09251f6f 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -74,8 +74,6 @@ $(document).ready(function() { $('#file_upload_start').click(function() { if($('#file_upload_start').attr('mode') == 'menu') { $('#fileSelector').change(function() { -// alert("foo"); - //Chromium prepends C:\fakepath.... bspos = $('#fileSelector').val().lastIndexOf('\\')+1; filename = $('#fileSelector').val().substr(bspos); @@ -86,7 +84,10 @@ $(document).ready(function() { $('#file_upload_start').attr('mode', 'action'); }); $('#fileSelector').show(); //needed for Chromium compatibility - $('#fileSelector').click(); + //rekonq does not call change-event, when click() is executed by script + if(navigator.userAgent.indexOf('rekonq') == -1){ + $('#fileSelector').click(); + } } else if($('#file_upload_start').attr('mode') == 'action') { $('#file_upload_cancel').slideUp(250); $('#file_upload_target').load(uploadFinished);