1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-12-02 14:24:11 +01:00

Fix: The return false in the click handler for the full numbers pagination numbers was somewhat too harsh and stopped other

events from being attached to those elements if the developer wanted. Just use preventDefault instead - 5105
This commit is contained in:
Allan Jardine 2011-05-26 10:48:13 +01:00
parent 2eacc63f87
commit 42e50f6ba7

View File

@ -536,12 +536,12 @@
/* Loop over each instance of the pager */ /* Loop over each instance of the pager */
var an = oSettings.aanFeatures.p; var an = oSettings.aanFeatures.p;
var anButtons, anStatic, nPaginateList; var anButtons, anStatic, nPaginateList;
var fnClick = function() { var fnClick = function(e) {
/* Use the information in the element to jump to the required page */ /* Use the information in the element to jump to the required page */
var iTarget = (this.innerHTML * 1) - 1; var iTarget = (this.innerHTML * 1) - 1;
oSettings._iDisplayStart = iTarget * oSettings._iDisplayLength; oSettings._iDisplayStart = iTarget * oSettings._iDisplayLength;
fnCallbackDraw( oSettings ); fnCallbackDraw( oSettings );
return false; e.preventDefault();
}; };
var fnFalse = function () { return false; }; var fnFalse = function () { return false; };