Skip to content

Commit 66e4409

Browse files
authored
Release 1.3.5 with date 11/17/2021 (opnsense#4)
- 36fbba7 (opnsense/core@2e5d8ec) - 857598b
1 parent 857598b commit 66e4409

File tree

8 files changed

+19
-14
lines changed

8 files changed

+19
-14
lines changed

dist/jQuery.Bootgrid.1.3.5.nupkg

-25.8 KB
Binary file not shown.

dist/jquery.bootgrid-1.3.5.zip

138 Bytes
Binary file not shown.

dist/jquery.bootgrid.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jQuery Bootgrid v1.3.5 - 03/11/2019
3-
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
2+
* jQuery Bootgrid v1.3.5 - 11/17/2021
3+
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2021 Deciso B.V. (http://www.jquery-bootgrid.com)
44
* Licensed under the MIT license. See LICENSE.txt for more details.
55
*/
66
.bootgrid-header,

dist/jquery.bootgrid.fa.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jQuery Bootgrid v1.3.5 - 03/11/2019
3-
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
2+
* jQuery Bootgrid v1.3.5 - 11/17/2021
3+
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2021 Deciso B.V. (http://www.jquery-bootgrid.com)
44
* Licensed under the MIT license. See LICENSE.txt for more details.
55
*/
66
;(function ($, window, undefined)

dist/jquery.bootgrid.js

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jQuery Bootgrid v1.3.5 - 03/11/2019
3-
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
2+
* jQuery Bootgrid v1.3.5 - 11/17/2021
3+
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2021 Deciso B.V. (http://www.jquery-bootgrid.com)
44
* Licensed under the MIT license. See LICENSE.txt for more details.
55
*/
66
;(function ($, window, undefined)
@@ -1219,10 +1219,10 @@ Grid.defaults = {
12191219
datetime: {
12201220
// convert datetime type fields from unix timestamp to readable format
12211221
from: function (value) {
1222-
return moment(parseInt(value)*1000);
1222+
return value ? moment(parseInt(value)*1000) : "";
12231223
},
12241224
to: function (value) {
1225-
return value.format("lll");
1225+
return value ? value.format("lll") : "";
12261226
}
12271227
},
12281228
memsize: {
@@ -1446,9 +1446,14 @@ Grid.prototype.append = function(rows)
14461446
var appendedRows = [];
14471447
for (var i = 0; i < rows.length; i++)
14481448
{
1449-
if (appendRow.call(this, rows[i]))
1449+
var row = rows[i];
1450+
for (var j = 0; j < this.columns.length; j++) {
1451+
var column = this.columns[j];
1452+
row[column.id] = column.converter.from(row[column.id]);
1453+
}
1454+
if (appendRow.call(this, row))
14501455
{
1451-
appendedRows.push(rows[i]);
1456+
appendedRows.push(row);
14521457
}
14531458
}
14541459
sortRows.call(this);

dist/jquery.bootgrid.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.bootgrid.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)