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

DEV added a few tweaks for DD-1294

This commit is contained in:
Allan Jardine 2020-05-21 09:30:34 +00:00
parent 5e5295febd
commit 68798c37ac
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
a150bb592baaba3196a7c879602aa617da9ecc42
0c710d8a5273e756d2125c1cdfa91672b7d213da

View File

@ -69,7 +69,7 @@ if ( window.$ ) {
if(strArr.length > 1000){
var first = strArr.splice(0, 500);
var second = strArr.splice(strArr.length - 499, 499);
first.push('... Truncated for berevity - look at your browsers network inspector to see the full source ...');
first.push("\n\n... Truncated for brevity - look at your browser's network inspector to see the full source ...\n\n");
str = first.concat(second).join('\n');
}