Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0612ee64
Commit
0612ee64
authored
Sep 27, 2017
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix linting errors in locale/index.js
parent
3b2d68d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
.eslintignore
.eslintignore
+1
-1
app/assets/javascripts/locale/index.js
app/assets/javascripts/locale/index.js
+2
-3
No files found.
.eslintignore
View file @
0612ee64
...
...
@@ -8,4 +8,4 @@
karma.config.js
webpack.config.js
svg.config.js
/app/assets/javascripts/locale/**/
*
.js
/app/assets/javascripts/locale/**/
app
.js
app/assets/javascripts/locale/index.js
View file @
0612ee64
...
...
@@ -16,9 +16,8 @@ const locales = allLocales.reduce((d, obj) => {
return
data
;
},
{});
let
lang
=
document
.
querySelector
(
'
html
'
).
getAttribute
(
'
lang
'
)
||
'
en
'
;
lang
=
lang
.
replace
(
/-/g
,
'
_
'
);
const
langAttribute
=
document
.
querySelector
(
'
html
'
).
getAttribute
(
'
lang
'
);
const
lang
=
(
langAttribute
||
'
en
'
).
replace
(
/-/g
,
'
_
'
);
const
locale
=
new
Jed
(
locales
[
lang
]);
/**
...
...
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