Commit 1e1ed482 by Venkatesh Seetharam

ATLAS-112 UI: Make lineage graph extensible for multiple nodes. Contributed by Vishal Kadam

parent ff5b1f17
......@@ -39,7 +39,8 @@
"undef": true, // Require all non-global variables be declared before they are used.
"unused": true, // Warn unused variables.
"globals": { // Globals variables.
"angular": true
"angular": true,
"$": false
},
"predef": [ // Extra globals.
"define",
......
......@@ -17,9 +17,14 @@
-->
<div class="lineage-viz" data-ng-controller="LineageController">
<button type="button" class="btn btn-primary pull-right" ng-click="onReset()">
Reset
</button>
<div class="graph">
<h4 data-ng-if="!requested && !lineageData">No lineage data found</h4>
<i data-ng-if="requested" class="fa fa-spinner fa-spin fa-5x"></i>
<svg >
<g/>
</svg>
</div>
</div>
......@@ -8,6 +8,8 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (suma.shivaprasad via shwethags)
ALL CHANGES:
ATLAS-112 UI: Make lineage graph extensible for multiple nodes (Vishal Kadam
via Venkatesh Seetharam)
ATLAS-152 TimeStamp fields not showing the details tab (Vishal Kadam
via Venkatesh Seetharam)
ATLAS-111 UI: Create Help Link (Vishal Kadam via Venkatesh Seetharam)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment