If you try n add input in the password or the email text field in the additional options wrapper the ctrl-a just ends up selecting the background files if your in the account_home page, while im not sure how to disable this while the wrapper is open,
if you add
<script>
$('.additional-options-wrapper').keydown(function(e){
if (e.keyCode == 65 && e.ctrlKey) {
e.target.select()
}
})
</script>
right under <div id="additionalOptionsWrapper" class="additional-options-wrapper" style="display: none; padding-top:5px;">
in the _uploader.inc.php file in the themes/flow/templates/partial, it'll actually select any text in the field as well. after the upload goes through the account_home file listing is refreshed anyway so the file selection is no longer an issue.
i suppose we can use this for those who want it as a fix until its fixed permanently if mfscripts chooses to do so
best regards
if you add
<script>
$('.additional-options-wrapper').keydown(function(e){
if (e.keyCode == 65 && e.ctrlKey) {
e.target.select()
}
})
</script>
right under <div id="additionalOptionsWrapper" class="additional-options-wrapper" style="display: none; padding-top:5px;">
in the _uploader.inc.php file in the themes/flow/templates/partial, it'll actually select any text in the field as well. after the upload goes through the account_home file listing is refreshed anyway so the file selection is no longer an issue.
i suppose we can use this for those who want it as a fix until its fixed permanently if mfscripts chooses to do so
best regards