Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LabNbook
LabNbook-code
Commits
16402c46
Commit
16402c46
authored
Mar 11, 2021
by
Anthony Geourjon
⚓
Browse files
Fix concaténation
parent
76120326
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/js/report/control.js
View file @
16402c46
...
...
@@ -214,7 +214,7 @@ function synchronize(id_report) { // cette fonction est lancée toutes les $cfg[
header
.
find
(
"
.modified_ld
"
).
show
();
var
editor
=
$
(
this
).
find
(
"
editor
"
).
text
();
var
last_edition
=
$
(
this
).
find
(
"
last_edition
"
).
text
();
var
new_title
=
__
(
"
Dernière modification faite par: {{editor}} le
"
,
{
editor
:
editor
})
.
last_edition
.
__
(
"
- cliquez pour éteindre
"
);
var
new_title
=
__
(
"
Dernière modification faite par
: {{editor}} le
"
,
{
editor
:
editor
})
+
last_edition
+
__
(
"
- cliquez pour éteindre
.
"
);
header
.
find
(
"
.modified_ld
"
).
attr
(
'
title
'
,
new_title
);
header
.
find
(
"
.lb_ld_menu_btn
"
).
show
();
}
...
...
Write
Preview
Supports
Markdown
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