Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
feudal
feudalWebpage
Commits
105faf20
Commit
105faf20
authored
Jan 16, 2020
by
Lukas Burgey
Browse files
Fix support button
parent
0135b786
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/app/state/state.component.html
View file @
105faf20
...
...
@@ -84,7 +84,7 @@
<!-- contacts column -->
<td
>
<button
mat-button
mat-icon-button
href=
"mailto:
{{ service.contact_email }}
?Subject=%5BFEUDAL%5D%0A
"
>
<button
mat-button
mat-icon-button
matTooltip=
"
{{ service.contact_email }}
"
(click)=
"contactSupport()
"
>
<mat-icon>
contact_support
</mat-icon>
</button>
<br>
...
...
src/app/state/state.component.ts
View file @
105faf20
...
...
@@ -52,4 +52,8 @@ export class StateComponent implements OnInit {
}
}
public
contactSupport
()
{
window
.
location
.
href
=
'
mailto:
'
+
this
.
service
.
contact_email
+
'
?subject=%5BFEUDAL%5D%20Help%20request%0A
'
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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