Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
801ebb2a
Commit
801ebb2a
authored
Jun 27, 2016
by
Tatiana Rocher
Browse files
help : send mail to team
parent
67916323
Changes
2
Hide whitespace changes
Inline
Side-by-side
browser/index.html
View file @
801ebb2a
...
...
@@ -242,7 +242,15 @@
<div
id=
"logo"
style=
"float: right;"
onclick=
"console.log({'type': 'popup', 'default':'welcome'})"
>
Vidjil
<span
class=
'logo'
>
(beta)
</span></div>
<div
class=
"menu"
style=
"float: right"
>
<a
href=
"help"
target=
"_blank"
>
help
</a></div>
<div
class=
"menu"
style=
"float: right"
onmouseover=
"showSelector('helpSelector');"
>
help
<div
id=
"helpSelector"
class=
"selector"
><div>
<a
class=
"buttonSelector"
href=
"help"
target=
"_blank"
>
help
</a>
<a
class=
"buttonSelector getHelp"
onclick=
"report.sendMail()"
>
send email
</a>
<!--
<form action="mailto:tatiana.rocher@gmail.com?subject=Demande assistance" name="envoi" methode=POST enctype="text/plain"> !-->
</div></div>
</div>
<div
style=
"float: right"
class=
"menu"
onmouseover=
"showSelector('paletteSelector');"
>
palette
<div
id=
"paletteSelector"
class=
"selector"
><div>
...
...
browser/js/export.js
View file @
801ebb2a
...
...
@@ -565,6 +565,26 @@ Report.prototype = {
}
return
clone
},
sendMail
:
function
()
{
var
clones
=
''
var
list
=
m
.
getSelected
()
if
(
list
.
length
>
0
){
clones
+=
"
clones selectionnes :
\n
"
+
list
.
length
for
(
var
i
=
0
;
i
<
list
.
length
;
i
++
){
clones
+=
m
.
clone
(
list
[
i
]).
getFasta
()
+
'
\n
'
}
}
/**/
var
link
=
"
mailto:team@vidjil.org
"
+
"
?cc=
"
+
"
&subject=
"
+
escape
(
"
Demande d'assistance Vidjil
"
)
+
"
&body=
"
+
escape
(
"
page actuelle :
"
+
window
.
location
.
href
+
'
\n
'
+
clones
)
;
window
.
location
.
href
=
link
;
}
}
...
...
Vidjil Team
@vidjilteam
Mentioned in issue
#1924 (closed)
·
Nov 29, 2016
Mentioned in issue
#1924 (closed)
Mentioned in issue #1924
Toggle commit list
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