Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rybička
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Rybička
Commits
64fcef2b
Commit
64fcef2b
authored
2 years ago
by
Tomáš Valenta
Browse files
Options
Downloads
Patches
Plain Diff
chromium copying compatibility
parent
51fc6fea
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Release
Pipeline
#12202
passed
2 years ago
Stage: build
Stage: test_deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
static_src/mail_signature.js
+35
-31
35 additions, 31 deletions
static_src/mail_signature.js
with
35 additions
and
31 deletions
static_src/mail_signature.js
+
35
−
31
View file @
64fcef2b
import
$
from
"
jquery
"
;
import
alertify
from
"
alertifyjs
"
;
import
"
alertifyjs/build/css/alertify.min.css
"
;
const
emailDataURL
=
"
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAQAAABu4E3oAAACFUlEQVQ4y3XUXWjPYRQH8I+/1xhiVjQukOxG81KSceF1ciNprcitInEjF8tQLiQxufN2IS/JS1ESRWooiRJZ1GgjESum/edCdlz8n/32+y97nvr1O+/nfM85D+VnnEaXvPRXCO/cssd0Q56xDvkp/nNvWjCgNiz7W+yKmeCrVp3aTTdDnTlJfkyz3/kIyxWF0GrVoNiztWSysQPsWkWh1/YhUp7liRAe9DNGaRP6rMxUptrvjucu22xkqvOBEPaWFHYLoTkzOKA3V/pr1cnordBjMnQI7UYng/NJ9Y1bPgvhUpKsEcIuVgthZ2IfTZ5LoA53Q+gzKkk7hLscFsIUsFQIL3LINAphUaLOCt8K6vBMFziCXg16M5PhZcj9QVVBDV6C+ZbhlA85pWngbaIKpU8VfoAN4ESZ38X4opioarQXIGG/EB98zBlMsCrLAZbgVUEXqfjqLF7/mN5WiU+JXqsSt7kntIMLQtHEbEiepw6dSpxHQo8JNAmhFutST3bb5lwaxRC6Nap1XQgtJUz6hIvg9KA9abGpjH6mQpZQWA92eZ88X1UHNvueDM4OtHiGolC0LNFjjB+0rWttNVeTJ9kc2CKEovohl3yFNiEcH2DtSMGvpXTyD0iD1iR9rDK/+w3OJIA7Pdaj2wgV5qozAvxy0AlR7q/KyRy0+fvFvtJqlb8wpTPJRvVqzDMMnd576qH7eZV/8SPo7WpsIE8AAAAASUVORK5CYII=
"
;
const
emailImageURL
=
"
https://a.pirati.cz/mail/at.png
"
;
...
...
@@ -242,40 +243,43 @@ $(window).ready(
$
(
"
#copy
"
).
on
(
"
click
"
,
event
=>
{
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Interact_with_the_clipboard
// Can't do this on Firefox *yet*, NOTE - use when possible
//
// const type = "text/html";
// const blob = new Blob([$("#content").html()], { type });
// const data = [new window.ClipboardItem({ [type]: blob })];
//
// navigator.clipboard.write(data).then(
// () => {
// alertify.success(
// "Zkopírováno do schránky."
// );
// },
// () => {
// alertify.error(
// "Chyba při kopírování do schránky."
// );
// }
// );
try
{
selectHTML
(
"
preview
"
);
document
.
execCommand
(
"
copy
"
);
if
(
navigator
.
clipboard
.
write
)
{
// Chromium
alertify
.
success
(
"
Zkopírováno do schránky.
"
const
type
=
"
text/html
"
;
const
blob
=
new
Blob
([
$
(
"
#content
"
).
val
()],
{
type
});
const
data
=
[
new
window
.
ClipboardItem
({
[
type
]:
blob
})];
navigator
.
clipboard
.
write
(
data
).
then
(
()
=>
{
alertify
.
success
(
"
Zkopírováno do schránky.
"
);
},
()
=>
{
alertify
.
error
(
"
Chyba při kopírování do schránky.
"
);
}
);
}
catch
(
exception
)
{
console
.
log
(
"
Error copying:
"
,
exception
);
}
else
{
// Firefox
alertify
.
error
(
"
Chyba při kopírování do schránky. Prosím, zkopíruj text manuálně.
"
);
try
{
selectHTML
(
"
preview
"
);
document
.
execCommand
(
"
copy
"
);
alertify
.
success
(
"
Zkopírováno do schránky.
"
);
}
catch
(
exception
)
{
console
.
log
(
"
Error copying:
"
,
exception
);
alertify
.
error
(
"
Chyba při kopírování do schránky. Prosím, zkopíruj text manuálně.
"
);
}
}
}
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment