On line 59 of the bootstrap example:
http://datatables.net/plug-ins/pagination
for ( i=0, iLen=an.length ; i<iLen ; i++ ) {
iLen has not been previously defined so it gets declared as a global. This breaks on pages with 'use strict';
http://datatables.net/plug-ins/pagination
for ( i=0, iLen=an.length ; i<iLen ; i++ ) {
iLen has not been previously defined so it gets declared as a global. This breaks on pages with 'use strict';