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
5d63b81b
Commit
5d63b81b
authored
Feb 18, 2021
by
Jannik Lehmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete DOMContentLoadedEventListener
parent
a752c885
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
app/assets/javascripts/pages/projects/feature_flags_user_lists/new/index.js
...ipts/pages/projects/feature_flags_user_lists/new/index.js
+14
-14
No files found.
app/assets/javascripts/pages/projects/feature_flags_user_lists/new/index.js
View file @
5d63b81b
/* eslint-disable no-new */
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
NewUserList
from
'
~/user_lists/components/new_user_list.vue
'
;
...
...
@@ -5,18 +7,16 @@ import createStore from '~/user_lists/store/new';
Vue
.
use
(
Vuex
);
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
{
const
el
=
document
.
getElementById
(
'
js-new-user-list
'
);
const
{
userListsDocsPath
,
featureFlagsPath
}
=
el
.
dataset
;
return
new
Vue
({
el
,
store
:
createStore
(
el
.
dataset
),
provide
:
{
userListsDocsPath
,
featureFlagsPath
,
},
render
(
h
)
{
return
h
(
NewUserList
);
},
});
const
el
=
document
.
getElementById
(
'
js-new-user-list
'
);
const
{
userListsDocsPath
,
featureFlagsPath
}
=
el
.
dataset
;
new
Vue
({
el
,
store
:
createStore
(
el
.
dataset
),
provide
:
{
userListsDocsPath
,
featureFlagsPath
,
},
render
(
h
)
{
return
h
(
NewUserList
);
},
});
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