v1.12.0

Release candidate 0.97

Posted on March 14, 2013 by Alfred Wassermann

Version 0.97 is a complete overhaul of JSXGraph code base. It brings a lot of changes which in some cases might break your code. So, even if this version is already well tested internally, we decided to start with a release candidate. Please, test it carefully against your code base and give us feedback.

You can test this the release candidate of version 0.97 by including

http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore-0.97.min.js

The most radical changes which might affect applications are:

To deactivate the navigation buttons you now have to set

1
    JXG.Options.board.showNavigation = false;

If you created your own JSXGraph theme(s) using JXG.deepCopy() you have to replace deepCopy() with merge():

1
2
3
4
    // 0.96 and before 
        JXG.Options = JXG.deepCopy(JXG.Options, {...}); 
    // 0.97+ 
        JXG.Options = JXG.merge(JXG.Options, {...});
To all posts