From 442156a13697dfb2f96a45c0107c92c6c2ba13a3 Mon Sep 17 00:00:00 2001 From: tudor-sv Date: Sat, 5 Apr 2014 13:27:14 +0300 Subject: [PATCH] fnUpdate() declaring a parameter on fnUpdate and passing it to fnUpdateClones --- js/dataTables.fixedHeader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/dataTables.fixedHeader.js b/js/dataTables.fixedHeader.js index c773076..a0d0e48 100644 --- a/js/dataTables.fixedHeader.js +++ b/js/dataTables.fixedHeader.js @@ -113,8 +113,8 @@ FixedHeader = function ( mTable, oInit ) { * Returns: - * Inputs: - */ - this.fnUpdate = function () { - this._fnUpdateClones(); + this.fnUpdate = function (prm) { + this._fnUpdateClones(prm); this._fnUpdatePositions(); };