@kumologica/sdk 3.4.0-beta11 → 3.4.0-beta13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -127,7 +127,7 @@ RED.palette.explorer = (function () {
127
127
 
128
128
  // On select tab option
129
129
  $('#exp-open-project').on(
130
- 'tree.select',
130
+ 'tree.dblclick',
131
131
  function (event) {
132
132
  event.stopImmediatePropagation();
133
133
  if (event.node) {
@@ -128,9 +128,9 @@
128
128
  </div>
129
129
 
130
130
  <ul id="palette-explorer-context-menu" class="jqtree-contextmenu dropdown-menu">
131
- <li data-item="open"><a>Open in Editor...</a></li>
131
+ <li data-item="open"><a>Open</a></li>
132
132
  <li class="context-menu-item context-menu-separator context-menu-not-selectable"></li>
133
- <li data-item="renameTab"><a>Rename</a></li>
133
+ <li data-item="renameTab"><a>Rename...</a></li>
134
134
  <li data-item="deleteTab"><a>Delete</a></li>
135
135
 
136
136
  </ul>
@@ -60,6 +60,10 @@ class DesignerServer {
60
60
  }
61
61
  }
62
62
 
63
+ getFlowServer() {
64
+ return this.flowServer;
65
+ }
66
+
63
67
  getListeningPort() {
64
68
  return this.flowServer.serverSettings.port;
65
69
  }