Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
generateur-slogans
Commits
5a5ab47e
Verified
Commit
5a5ab47e
authored
Oct 24, 2017
by
Thibaut Broggi
Browse files
Fix buttons
parent
e822142b
Changes
1
Hide whitespace changes
Inline
Side-by-side
static/canvas.js
View file @
5a5ab47e
...
...
@@ -90,7 +90,7 @@ let draw = function() {
ctx
.
fillText
(
fillText
,
width
*
0.08
,
height
*
0.2
+
fontSize
*
1.4
);
// Update download button
document
.
querySelector
(
'
#save-image
'
).
href
=
canvas
.
toDataURL
();
document
.
querySelector
(
'
#save-image
> a
'
).
href
=
canvas
.
toDataURL
();
// Edit URL
history
.
replaceState
(
''
,
''
,
window
.
location
.
pathname
+
'
?
'
...
...
@@ -163,8 +163,8 @@ window.addEventListener('load', function() {
document
.
getElementById
(
'
step2value
'
).
oninput
=
draw
;
document
.
getElementById
(
'
signature
'
).
oninput
=
draw
;
// Remove server calls for random
/fb./twtr
buttons
let
buttons
=
document
.
querySelectorAll
(
'
button.randomize
, button.tweet-button, button.fb-button
'
);
// Remove server calls for random buttons
let
buttons
=
document
.
querySelectorAll
(
'
button.randomize
'
);
for
(
let
i
=
0
;
i
<
buttons
.
length
;
++
i
)
{
buttons
[
i
].
type
=
"
button
"
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment