Skip to content

Commit 9f2159e

Browse files
authored
Update README.md
1 parent dd799ec commit 9f2159e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,34 @@ Built using:
4949
- Python: `python -m SimpleHTTPServer 9001`
5050
- php 5.4+: `php -S localhost:9001`
5151

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+
5280
##Development
5381

5482
Edit the [templates](https://github.com/jlblcc/json-schema-viewer/tree/master/templates)

0 commit comments

Comments
 (0)