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
cf978b5b
Commit
cf978b5b
authored
Aug 03, 2017
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve geo_node_form.js
parent
1d99729b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
app/assets/javascripts/geo/geo_node_form.js
app/assets/javascripts/geo/geo_node_form.js
+2
-7
No files found.
app/assets/javascripts/geo/geo_node_form.js
View file @
cf978b5b
export
default
class
GeoNodeForm
{
export
default
class
GeoNodeForm
{
constructor
(
container
)
{
constructor
(
container
)
{
this
.
$container
=
$
(
container
)
;
this
.
$container
=
container
;
this
.
$namespaces
=
this
.
$container
.
find
(
"
.js-namespaces
"
);
this
.
$namespaces
=
this
.
$container
.
find
(
"
.js-namespaces
"
);
this
.
$namespacesSelect
=
this
.
$namespaces
.
find
(
'
.select2
'
);
this
.
$namespacesSelect
=
this
.
$namespaces
.
find
(
'
.select2
'
);
this
.
$primaryCheckbox
=
this
.
$container
.
find
(
"
input[type='checkbox']
"
);
this
.
$primaryCheckbox
=
this
.
$container
.
find
(
"
input[type='checkbox']
"
);
...
@@ -9,11 +9,6 @@ export default class GeoNodeForm {
...
@@ -9,11 +9,6 @@ export default class GeoNodeForm {
onPrimaryCheckboxChange
(
event
)
{
onPrimaryCheckboxChange
(
event
)
{
this
.
$namespacesSelect
.
select2
(
'
data
'
,
null
);
this
.
$namespacesSelect
.
select2
(
'
data
'
,
null
);
this
.
$namespaces
.
toggleClass
(
'
hidden
'
,
this
.
$primaryCheckbox
.
is
(
'
:checked
'
))
if
(
this
.
$primaryCheckbox
.
is
(
'
:checked
'
))
{
this
.
$namespaces
.
addClass
(
'
hidden
'
);
}
else
{
this
.
$namespaces
.
removeClass
(
'
hidden
'
);
}
}
}
}
}
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