Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
02659550
Commit
02659550
authored
May 21, 2018
by
kevalbhatt
Committed by
Madhan Neethiraj
May 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2706: UI : Change the labels of propagation classification popup
Signed-off-by:
Madhan Neethiraj
<
madhan@apache.org
>
parent
eaf067bc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
PropagationPropertyModalView_tmpl.html
...js/templates/graph/PropagationPropertyModalView_tmpl.html
+2
-2
PropagationPropertyModal.js
...boardv2/public/js/views/graph/PropagationPropertyModal.js
+4
-4
No files found.
dashboardv2/public/js/templates/graph/PropagationPropertyModalView_tmpl.html
View file @
02659550
...
...
@@ -18,12 +18,12 @@
<div
class=
"col-sm-12"
>
<div
class=
"row"
>
<div
class=
"col-sm-9"
style=
"margin-top: 5px;"
>
<span
class=
"pull-left"
>
Propagation flow
</span>
<span
class=
"pull-left"
>
Enable/Disable Propagation
</span>
<label
class=
"switch pull-left"
>
<input
type=
"checkbox"
class=
"switch-input"
name=
"editPropagationType"
value=
"text"
>
<span
class=
"switch-slider"
></span>
</label>
<span
class=
"pull-left"
>
Block p
ropagation
</span>
<span
class=
"pull-left"
>
Select Classifications to Block P
ropagation
</span>
</div>
</div>
<hr
style=
"margin-top: 0px;"
>
...
...
dashboardv2/public/js/views/graph/PropagationPropertyModal.js
View file @
02659550
...
...
@@ -124,7 +124,7 @@ define(['require',
this
.
viewType
=
'flow'
;
var
that
=
this
,
modalObj
=
{
title
:
'E
dit Propagation Flow
'
,
title
:
'E
nable/Disable Propagation
'
,
content
:
this
,
okText
:
'Update'
,
okCloses
:
false
,
...
...
@@ -301,7 +301,7 @@ define(['require',
propagationStringValue
+=
getTableRow
({
"val"
:
val
,
fromBlockClassification
:
false
});
});
classificationTableValue
=
"<table class='attriTable'><
caption>Block Propagatation Table</caption><
tr><th class='w30'>Classification</th><th>Entity Name</th><th class='w30'>Block Propagatation</th>"
+
propagationStringValue
+
"</table>"
;
classificationTableValue
=
"<table class='attriTable'><tr><th class='w30'>Classification</th><th>Entity Name</th><th class='w30'>Block Propagatation</th>"
+
propagationStringValue
+
"</table>"
;
this
.
ui
.
PropagatedClassificationTable
.
append
(
_
.
isEmpty
(
propagationStringValue
)
?
"No Records Found."
:
classificationTableValue
);
},
...
...
@@ -333,12 +333,12 @@ define(['require',
showEditPropagation
:
function
()
{
this
.
$
(
'.editPropagation'
).
show
();
this
.
$
(
'.propagatedClassificationTable'
).
hide
();
this
.
modal
.
$el
.
find
(
'.modal-title'
).
text
(
"E
dit Propagation Flow
"
);
this
.
modal
.
$el
.
find
(
'.modal-title'
).
text
(
"E
nable/Disable Propagation
"
);
},
showPropagatedClassificationTable
:
function
()
{
this
.
$
(
'.editPropagation'
).
hide
();
this
.
$
(
'.propagatedClassificationTable'
).
show
();
this
.
modal
.
$el
.
find
(
'.modal-title'
).
text
(
"
Block Propagation Table
"
);
this
.
modal
.
$el
.
find
(
'.modal-title'
).
text
(
"
Select Classifications to Block Propagation
"
);
}
});
...
...
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