File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -136,15 +136,21 @@ html, body {
136136.newModelObject {
137137 position : absolute;
138138 z-index : 1 ;
139- right : 150 px ;
139+ right : 225 px ;
140140}
141141
142- .exportConductButton {
142+ .codifyConductButton {
143143 position : absolute;
144144 z-index : 1 ;
145145 right : 75px ;
146146}
147147
148+ .exportConductButton {
149+ position : absolute;
150+ z-index : 1 ;
151+ right : 150px ;
152+ }
153+
148154.importConductButton {
149155 position : absolute;
150156 z-index : 1 ;
Original file line number Diff line number Diff line change @@ -361,6 +361,11 @@ function importConduct() {
361361 window . open ( "/conductEditor/" + conductID + "/import/" , "_blank" ) ;
362362}
363363
364+ function codifyConduct ( ) {
365+ var conductID = GetURLParameter ( "conductID" )
366+ window . open ( "/conductEditor/" + conductID + "/codify/" , "_blank" ) ;
367+ }
368+
364369function copyFlowObject ( ) {
365370 selectedNodes = network . getSelectedNodes ( )
366371 if ( selectedNodes . length == 1 ) {
Original file line number Diff line number Diff line change 3939 < body >
4040 < div class ="ui-container ">
4141 < button onclick ="createNewObjectPanel() " class ="btn btn-primary newModelObject theme-panelButton "> +</ button >
42+ < button onclick ="codifyConduct() " class ="btn btn-primary codifyConductButton theme-panelButton "> Codify</ button >
4243 < button onclick ="exportConduct() " class ="btn btn-primary exportConductButton theme-panelButton "> Export</ button >
4344 < button onclick ="importConduct() " class ="btn btn-primary importConductButton theme-panelButton "> Import</ button >
4445 < div class ="ui-main ">
You can’t perform that action at this time.
0 commit comments