News


Dynamic Mathematics with JavaScript

0.97 on CDNJS

JSXGraph 0.97 is now available on CDNJS. The url is http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.97/jsxgraphcore.js You can also load the file readers from cdnjs: http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.97/GeogebraReader.min.js http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.97/GeonextReader.min.js http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.97/IntergeoReader.min.js http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.97/SketchReader.min.js [Read More]

Release of version 0.97

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. The most radical changes which might affect applications are: Implementation of the AMD pattern to actually enforce the module pattern that only existed theoretically before.... [Read More]

Release candidate 0.97

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... [Read More]

Code cleanup in 0.97

While we implemented the AMD pattern in JSXGraph version 0.97 we also cleaned up our code base. There were a few math functions which you could access as “shortcuts” as methods of our JXG.Board class defined in src/Wrappers.js. Wrappers.js is gone now and the... [Read More]

JSXGraph and AMD

Version 0.97 introduces module definitions as defined by the AMD API. This only enforces the module and namespace pattern we were using in JSXGraph for years. Do I have to change my code? In most cases: No. We made these changes with backwards compatibility in mind. Just load... [Read More]