mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-23 03:46:37 +11:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e669357f2d
2 changed files with 5 additions and 4 deletions
|
@ -5,6 +5,7 @@ Changelog
|
|||
-------------
|
||||
|
||||
- "Edit Snippet" panel is now hidden by default to remove visual noise.
|
||||
- Linux/Unix browsers now use Ctrl+Enter as a shortcut to submit the form.
|
||||
- Added a dedicated "Copy Snippet" button to copy the content to the clipboard.
|
||||
- Added "View Raw" option to optionally render the 'raw' snippet content with a
|
||||
template rather served as plain text. This was added to hinder abuse.
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
// -----------------------------------------------------------------------------
|
||||
// Add data-platform to the body tag to show platform related shortcuts
|
||||
// -----------------------------------------------------------------------------
|
||||
const isWindows = navigator.appVersion.indexOf('Win') !== -1;
|
||||
document.body.dataset.platform = isWindows ? 'win' : 'mac';
|
||||
const isMac = navigator.platform.indexOf('Mac') !== -1;
|
||||
document.body.dataset.platform = isMac ? 'mac' : 'win';
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Autofocus the content field on the homepage
|
||||
|
@ -18,7 +18,7 @@ if (af !== null) {
|
|||
// Cmd+Enter or Ctrl+Enter submits the form
|
||||
// -----------------------------------------------------------------------------
|
||||
document.body.onkeydown = function(e) {
|
||||
const metaKey = isWindows ? e.ctrlKey : e.metaKey;
|
||||
const metaKey = isMac ? e.metaKey : e.ctrlKey;
|
||||
const form = document.querySelector('.snippet-form');
|
||||
|
||||
if (form && e.keyCode === 13 && metaKey) {
|
||||
|
@ -141,4 +141,4 @@ if (editSnippetLink && editSnippetForm) {
|
|||
editSnippetForm.getBoundingClientRect().y
|
||||
);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue