UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Platform One
P
Party Bus
Launchboard
launchboard-fe
Commits
4c2a462d
Commit
4c2a462d
authored
Sep 22, 2020
by
Keith Becker
Browse files
open one email client to send to each selected student
parent
ee5a458a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
src/views/TrainingDetails.vue
src/views/TrainingDetails.vue
+2
-6
No files found.
src/views/TrainingDetails.vue
View file @
4c2a462d
...
@@ -402,12 +402,8 @@ export default {
...
@@ -402,12 +402,8 @@ export default {
},
},
mailSelectedStudents
()
{
mailSelectedStudents
()
{
let
studentEmails
=
this
.
getSelectedStudents
.
map
(
student
=>
student
.
email
);
let
studentEmails
=
this
.
getSelectedStudents
.
map
(
student
=>
student
.
email
);
let
index
=
1
;
const
studentEmailsStr
=
studentEmails
.
join
(
'
;
'
);
studentEmails
.
forEach
(
function
(
email
)
{
window
.
open
(
"
mailto:
"
+
studentEmailsStr
,
"
_blank
"
,
"
width=800,height=500
"
)
setTimeout
(()
=>
window
.
open
(
"
mailto:
"
+
email
,
"
_blank
"
,
"
width=800,height=500
"
),
500
*
index
);
index
++
;
});
},
},
btnPushEditPoc
()
{
btnPushEditPoc
()
{
if
(
this
.
getSelectedPocs
.
length
>
0
)
{
if
(
this
.
getSelectedPocs
.
length
>
0
)
{
...
...
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