1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-27 00:54:15 +01:00

Fixed: Check also for pt units as well as the other CSS options

This commit is contained in:
Allan Jardine 2010-10-16 12:57:08 +01:00
parent a2d7a32b2f
commit 139a3f7f13

View File

@ -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;
}