From 139a3f7f136d5a51f040536321410bcef959e6cb Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Sat, 16 Oct 2010 12:57:08 +0100 Subject: [PATCH] Fixed: Check also for pt units as well as the other CSS options --- media/js/jquery.dataTables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index 69d7220a..79f8388c 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -5475,7 +5475,7 @@ } if ( s.indexOf('em') != -1 || s.indexOf('%') != -1 || s.indexOf('ex') != -1 || - s.indexOf('px') != -1 ) + s.indexOf('px') != -1 || s.indexOf('pt') != -1 ) { return s; }