Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vidjil
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,711
Issues
1,711
List
Boards
Labels
Service Desk
Milestones
Merge Requests
86
Merge Requests
86
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
vidjil
Commits
801ebb2a
Commit
801ebb2a
authored
Jun 27, 2016
by
Tatiana Rocher
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
help : send mail to team
parent
67916323
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
browser/index.html
browser/index.html
+9
-1
browser/js/export.js
browser/js/export.js
+20
-0
No files found.
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