File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ Therefore, you can use these shell commands:
102102
103103~~~ sh
104104cd ./lidoapp_bp/static
105- npm init -y
106- npm install
105+ npm ci
106+ cd ../..
107107~~~
108108
109109Then start ` app.py ` (optionally with argument ` --port ` ):
Original file line number Diff line number Diff line change @@ -415,10 +415,10 @@ <h4>RDF Output (ttl)</h4>
415415 }
416416 } ) . mount ( '#app' ) ;
417417
418- function makeEditor ( label , style = "ace/theme/monokai" , fmt = "ace/mode/xml" ) {
418+ function makeEditor ( label , fmt = "ace/mode/xml" ) {
419419 // Returns an ace editor object
420420 var ed = ace . edit ( label ) ;
421- ed . setTheme ( style ) ;
421+ // ed.setTheme("") //ace/theme/monokai" );
422422 ed . session . setMode ( fmt ) ;
423423 ed . setPrintMarginColumn ( - 1 ) ;
424424 return ed ;
@@ -428,7 +428,7 @@ <h4>RDF Output (ttl)</h4>
428428 var lidoEditor = makeEditor ( "lidoEditor" ) ;
429429 lidoEditor . setValue ( app . lido ) ;
430430 lidoEditor . on ( 'change' , function ( ) { onLidoChanged ( ) } ) ;
431- var rdfEditor = makeEditor ( "rdfEditor" , "" , " ace/mode/turtle") ;
431+ var rdfEditor = makeEditor ( "rdfEditor" , "ace/mode/turtle" ) ;
432432 rdfEditor . setValue ( '' )
433433
434434 function getLido ( mode = 0 ) {
You can’t perform that action at this time.
0 commit comments