You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2014/06/23 17:19:28 UTC

[17/22] git commit: Remove unwanted moving js lines

Remove unwanted moving js lines


Project: http://git-wip-us.apache.org/repos/asf/incubator-storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-storm/commit/fce7b89b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-storm/tree/fce7b89b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-storm/diff/fce7b89b

Branch: refs/heads/security
Commit: fce7b89b5d14ee2103adbb9a98fdcf5723359a56
Parents: 7341f70
Author: Kishor Patil <kp...@yahoo-inc.com>
Authored: Fri Jun 20 23:10:02 2014 +0000
Committer: Kishor Patil <kp...@yahoo-inc.com>
Committed: Fri Jun 20 23:10:02 2014 +0000

----------------------------------------------------------------------
 storm-core/src/ui/public/component.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/fce7b89b/storm-core/src/ui/public/component.html
----------------------------------------------------------------------
diff --git a/storm-core/src/ui/public/component.html b/storm-core/src/ui/public/component.html
index 823f8a3..aae0245 100644
--- a/storm-core/src/ui/public/component.html
+++ b/storm-core/src/ui/public/component.html
@@ -70,10 +70,6 @@ $(document).ready(function() {
         var executorStats = $("#component-executor-stats");
         var componentErrors = $("#component-errors");
         $.get("/templates/component-page-template.html", function(template) {
-            componentErrors.append(Mustache.render($(template).filter("#component-errors-template").html(),response));
-            if(response["componentErrors"].length > 0) {
-                $("#component-errors-table").tablesorter({ sortList: [[0,0]], headers: {1: { sorter: "stormtimestr"}}});
-            }
             componentSummary.append(Mustache.render($(template).filter("#component-summary-template").html(),response));
             if(response["componentType"] == "spout") {
                 componentStatsDetail.append(Mustache.render($(template).filter("#spout-stats-detail-template").html(),response));
@@ -96,6 +92,10 @@ $(document).ready(function() {
                     $("#bolt-executor-table").tablesorter({ sortList: [[0,0]], headers: {}});
                 }
             }
+            componentErrors.append(Mustache.render($(template).filter("#component-errors-template").html(),response));
+            if(response["componentErrors"].length > 0) {
+                $("#component-errors-table").tablesorter({ sortList: [[0,0]], headers: {1: { sorter: "stormtimestr"}}});
+            }
         });
     });
 });