Difference between revisions of "Browser test"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<jsxgraph width="500" height="500"> | <jsxgraph width="500" height="500"> | ||
(function(){ | (function(){ | ||
− | var brd = JXG.JSXGraph.initBoard('jxgbox', {-1,5,5,-1}); | + | var brd = JXG.JSXGraph.initBoard('jxgbox', { boundingbox:[-1,5,5,-1]}); |
− | brd.create('text',[0, | + | brd.create('text',[-0.5,2, function(){ return navigator.appVersion; }], {fontSize:'100%'}); |
+ | brd.create('text',[-0.5,0, function(){ return JXG.JSXGraph.rendererType; }], {fontSize:'100%'}); | ||
})(); | })(); | ||
</jsxgraph> | </jsxgraph> | ||
[[Category:Examples]] | [[Category:Examples]] | ||
+ | [[Category:Text]] |