Typeo in fnReloadAjax plugin code
Typeo in fnReloadAjax plugin code
On the http://datatables.net/plug-ins/api page in the fnReloadAjax code there is a typeo on line 62. Currently is shows
if ( typeof fnCallback == function' && fnCallback !== null )
and it should be
if ( typeof fnCallback == 'function' && fnCallback !== null )
Small change, missing the first single-quote in front of function.
if ( typeof fnCallback == function' && fnCallback !== null )
and it should be
if ( typeof fnCallback == 'function' && fnCallback !== null )
Small change, missing the first single-quote in front of function.
This discussion has been closed.
Replies
Allan