mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-21 13:29:04 +01:00
- See thread 20075 for the original report - Basically the issue here was that the object being used for the API extension on objects (e.g. `table.ajax` is an object) the object was not unique to each API instance, so it was being shared between instances and as a result, whatever instance was created last, would win! - Fix is to use a new object each time.