Merge pull request #3364 from Rudloff/feature/external-links

In standalone mode, open links to source in a new tab (fixes #3359)
This commit is contained in:
rabuzarus 2017-04-20 01:37:28 +02:00 committed by GitHub
commit f2154a206e
1 changed files with 8 additions and 0 deletions

View File

@ -300,6 +300,14 @@ $(document).ready(function(){
}); });
}); });
// Customize some elements when the app is used in standalone mode on Android
if (window.matchMedia('(display-mode: standalone)').matches) {
// Open links to source outside of the webview
$('body').on('click', '.plink', function (e) {
$(e.target).attr('target', '_blank');
});
}
/* /*
* This event listeners ensures that the textarea size is updated event if the * This event listeners ensures that the textarea size is updated event if the
* value is changed externally (textcomplete, insertFormatting, fbrowser...) * value is changed externally (textcomplete, insertFormatting, fbrowser...)