diff options
author | Lvbo163 <lv.bo163@zte.com.cn> | 2017-08-30 17:17:11 +0800 |
---|---|---|
committer | Lvbo163 <lv.bo163@zte.com.cn> | 2017-08-30 17:22:30 +0800 |
commit | 97e19323bd1e9ee44a02173a5ba05d13219c4082 (patch) | |
tree | a2c809787cf8f0b1109b6ca652a0f58d7d8915de /sdc-workflow-designer-ui/src/app/components/node/node.component.html | |
parent | aa77d17e3f68d8236b4fa07904fec054b07aa23b (diff) |
add property edit panel
add canvas component and add property edit panel, this panel will display while a workflow node is double clicked.
Issue-ID: SDC-260
Change-Id: I0f150b0a480f986e0a8ab3bb67cf89f3e2267155
Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/node/node.component.html')
-rw-r--r-- | sdc-workflow-designer-ui/src/app/components/node/node.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/node/node.component.html b/sdc-workflow-designer-ui/src/app/components/node/node.component.html index a178e6f5..f875718d 100644 --- a/sdc-workflow-designer-ui/src/app/components/node/node.component.html +++ b/sdc-workflow-designer-ui/src/app/components/node/node.component.html @@ -11,8 +11,8 @@ * ZTE - initial API and implementation and/or initial documentation
*/
-->
-<div class="node" [style.top]="node.top + 'px'" [style.left]="node.left + 'px'">
- <div>{{node.name}}</div>
+<div class="node" id="{{node.id}}" (dblclick)="showProperties()" [style.top]="node.top + 'px'" [style.left]="node.left + 'px'">
+ <div>{{node.name}}</div>
<div class="anchor anchors anchor-left">
<span class="left">
<i class="left-arrow1"></i>
|