bug in the code to make datatables work with bootstrap from twitter
bug in the code to make datatables work with bootstrap from twitter
max_favilli
Posts: 4Questions: 0Answers: 0
At line 63:
[code]for (i = 0, iLen = an.length ; i < iLen ; i++) {
// Remove the middle elements[/code]
i and iLen are not defined, so when the scripts are all budled and minified with a "use strict" it doesn't work.
I think it would be nice to update the javascript file.
Thanks for the supergalactic datatables.net!
[code]for (i = 0, iLen = an.length ; i < iLen ; i++) {
// Remove the middle elements[/code]
i and iLen are not defined, so when the scripts are all budled and minified with a "use strict" it doesn't work.
I think it would be nice to update the javascript file.
Thanks for the supergalactic datatables.net!
This discussion has been closed.