File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,34 @@ Built using:
49
49
- Python: ` python -m SimpleHTTPServer 9001 `
50
50
- php 5.4+: ` php -S localhost:9001 `
51
51
52
+ ## Use in Browser
53
+ ``` js
54
+ (function ($ ) {
55
+
56
+ var loc = window .location ;
57
+ // if not already set, set the root schema location
58
+ // this allows dev ENV to override the schema location
59
+ var schema = JSV .schema ? JSV .schema : loc .origin + loc .pathname .substring (0 , loc .pathname .lastIndexOf (' /' ) + 1 ) + ' schemas/schema/schema.json' ;
60
+
61
+ JSV .init ({
62
+ schema : schema,
63
+ plain : true , // don't use JQM
64
+ viewerHeight : $ (' #main-body' ).height (), // set initial dimensions of SVG
65
+ viewerWidth : $ (' #main-body' ).width ()
66
+ }, function () {
67
+ $ (' #jsv-tree' ).css (' width' , ' 100%' );
68
+ // set diagram width to 100%, this DOES NOT resize the svg container
69
+ // it will not adjust to window resize, needs a listener to support that
70
+ JSV .resetViewer ();
71
+ $ (' #loading' ).fadeOut (' slow' );
72
+ });
73
+ })(jQuery);
74
+ ```
75
+
76
+ The ` JSV.schema ` property must be set to the url of your schema.
77
+
78
+ Example: http://jlblcc.github.io/json-schema-viewer/basic.html
79
+
52
80
##Development
53
81
54
82
Edit the [ templates] ( https://github.com/jlblcc/json-schema-viewer/tree/master/templates )
You can’t perform that action at this time.
0 commit comments