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
voegeli martin extern - mvoegeli
pauljs
Commits
8de2c44a
Commit
8de2c44a
authored
Nov 19, 2019
by
weibel manuel - mweibel
Browse files
Update paul.js
adding icon titles
parent
4211eb17
Changes
1
Hide whitespace changes
Inline
Side-by-side
paul.js
View file @
8de2c44a
...
...
@@ -369,11 +369,25 @@ if(isIE11 && (window.location.pathname + window.location.search + window.locatio
/* Wema Start: Remove link from group-icon in edit mode */
if
(
isCoursePage
()){
var
arrGroupNames
=
new
Array
(
'
editing_groupsseparate
'
,
'
editing_groupsvisible
'
,
'
editing_groupsnone
'
);
var
icoTitle
=
{
editing_groupsseparate
:
{
de
:
'
Getrennte Gruppen
'
,
en
:
'
Separate groups
'
},
editing_groupsvisible
:
{
de
:
'
Sichtbare Gruppen
'
,
en
:
'
Visible groups
'
},
editing_groupsnone
:
{
de
:
'
Keine Gruppen
'
,
en
:
'
No groups
'
}
};
for
(
var
i
=
0
;
i
<
arrGroupNames
.
length
;
i
++
)
{
var
nodeAnchor
=
document
.
getElementsByClassName
(
arrGroupNames
[
i
]
+
'
menu-action cm-edit-action
'
);
if
(
nodeAnchor
.
length
>
0
)
{
for
(
var
j
=
nodeAnchor
.
length
;
j
>
0
;
j
--
)
{
nodeAnchor
[
j
-
1
].
outerHTML
=
nodeAnchor
[
j
-
1
].
innerHTML
;
nodeAnchor
[
j
-
1
].
outerHTML
=
nodeAnchor
[
j
-
1
].
innerHTML
.
replace
(
'
class=
'
,
'
title="
'
+
icoTitle
[
arrGroupNames
[
i
]][
document
.
documentElement
.
lang
]
+
'
" class=
'
)
;
}
}
}
...
...
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