File tree Expand file tree Collapse file tree
src/webvowl/js/elements/properties Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ Development setup
30303 . Run ` npm install ` to install the dependencies and build the project
31314 . Edit the code
32325 . Run ` npm run-script release ` to (re-)build all necessary files into the deploy directory
33+ 6 . Run ` serve deploy/ ` to run the server locally, by installing serve by using ` npm install serve -g ` .
34+
35+ Visit [ http://localhost:3000 ] ( http://localhost:3000 ) to use WebVOWL.
3336
3437### Advanced ###
3538Instead of the last step of the simple setup, install the npm package ` grunt-cli ` globally with
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ module.exports = (function (){
386386 if ( that . cardinality ( ) ) {
387387 return that . cardinality ( ) ;
388388 } else if ( that . minCardinality ( ) || that . maxCardinality ( ) ) {
389- var minBoundary = that . minCardinality ( ) || "* " ;
389+ var minBoundary = that . minCardinality ( ) || "0 " ;
390390 var maxBoundary = that . maxCardinality ( ) || "*" ;
391391 return minBoundary + ".." + maxBoundary ;
392392 }
You can’t perform that action at this time.
0 commit comments