You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ea...@apache.org on 2019/08/19 16:06:43 UTC

[qpid-dispatch] branch master updated: DISPATCH-1398 Removed references to missing functions in console

This is an automated email from the ASF dual-hosted git repository.

eallen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new 3132b88  DISPATCH-1398 Removed references to missing functions in console
3132b88 is described below

commit 3132b882ac97dd83cf737d7936ddd4914781adcc
Author: Ernest Allen <ea...@redhat.com>
AuthorDate: Mon Aug 19 12:05:22 2019 -0400

    DISPATCH-1398 Removed references to missing functions in console
---
 console/hawtio/src/main/webapp/plugin/html/tmplListTree.html | 2 +-
 console/stand-alone/plugin/html/qdrList.html                 | 2 +-
 console/stand-alone/plugin/js/qdrList.js                     | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/console/hawtio/src/main/webapp/plugin/html/tmplListTree.html b/console/hawtio/src/main/webapp/plugin/html/tmplListTree.html
index d528846..710ff0a 100644
--- a/console/hawtio/src/main/webapp/plugin/html/tmplListTree.html
+++ b/console/hawtio/src/main/webapp/plugin/html/tmplListTree.html
@@ -29,7 +29,7 @@
         <div class="pane-viewport">
             <div class="pane-content">
                 <div class="treeContainer">
-                    <div id="entityTree" onSelect="onTreeSelected" onRoot="onRootReady" hideRoot="true"></div>
+                    <div id="entityTree" onSelect="onTreeSelected" hideRoot="true"></div>
                     <div ng-init="treeReady()"></div>
                 </div>
             </div>
diff --git a/console/stand-alone/plugin/html/qdrList.html b/console/stand-alone/plugin/html/qdrList.html
index 76a5706..18bb1c0 100644
--- a/console/stand-alone/plugin/html/qdrList.html
+++ b/console/stand-alone/plugin/html/qdrList.html
@@ -72,7 +72,7 @@ under the License.
         <div class="tree-header"><select id="routerSelect" ng-options="node as node.name for node in nodes"
                 ng-model="currentNode" ng-change="selectNode(currentNode)"></select></div>
         <div class="_treeContainer">
-            <div id="entityTree" onSelect="onTreeSelected" onRoot="onRootReady" hideRoot="true"></div>
+            <div id="entityTree" hideRoot="true"></div>
             <div ng-init="treeReady()"></div>
         </div>
     </div>
diff --git a/console/stand-alone/plugin/js/qdrList.js b/console/stand-alone/plugin/js/qdrList.js
index a331cf5..047a6a9 100644
--- a/console/stand-alone/plugin/js/qdrList.js
+++ b/console/stand-alone/plugin/js/qdrList.js
@@ -36,7 +36,6 @@ export class ListController {
       ActivatedKey = 'QDRActivatedKey';
     $scope.details = {};
 
-    $scope.tmplListTree = QDRTemplatePath + 'tmplListTree.html';
     $scope.selectedEntity = localStorage[SelectedEntityKey] || 'address';
     $scope.ActivatedKey = localStorage[ActivatedKey] || null;
     if ($scope.selectedEntity == 'undefined')
@@ -944,7 +943,7 @@ export class ListController {
       serviceReady = true;
       initTree();
     });
-    // called by ng-init="treeReady()" in tmplListTree.html
+    // called by ng-init="treeReady()" in qdrList.html
     $scope.treeReady = function () {
       treeReady = true;
       initTree();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org