Skip to content

Commit 23bc215

Browse files
committed
v3.5.1
1 parent ea7cc17 commit 23bc215

File tree

7 files changed

+22
-13
lines changed

7 files changed

+22
-13
lines changed

ChangeLog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Version 3.5.1 (07/12/2021)
2+
==========================
3+
4+
Fixes:
5+
++++++
6+
Localization
7+
{0} in strPage displayed as such in ja localization
8+
9+
110
Version 3.5.0 (07/01/2021)
211
==========================
312

array.htm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html>
33
<head>
44
<!--jQuery dependencies-->
5-
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
6-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
7-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
5+
<script src="https://unpkg.com/[email protected].4/dist/jquery.js"></script>
6+
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
7+
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
88

99
<!--PQ Grid files-->
1010
<link rel="stylesheet" href="pqgrid.min.css" />

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pqGrid",
33
"description": "Data grid with spreadsheet features, row grouping, sorting, filtering, etc",
4-
"version": "3.5.0",
4+
"version": "3.5.1",
55
"author": {
66
"name": "Paramvir Singh Dhindsa",
77
"email": "[email protected]",

json.htm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<html>
33
<head>
44
<!--jQuery dependencies-->
5-
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
6-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
7-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
8-
5+
<script src="https://unpkg.com/[email protected].4/dist/jquery.js"></script>
6+
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
7+
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
8+
99
<!--PQ Grid files-->
1010
<link rel="stylesheet" href="pqgrid.min.css" />
1111
<link rel="stylesheet" href="pqgrid.ui.min.css" />

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pqgridf",
3-
"version": "3.5.0",
3+
"version": "3.5.1",
44
"main": "index.js",
55
"author": {
66
"name": "Paramvir Dhindsa",

pqgrid.dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ParamQuery Pro v3.5.0
2+
* ParamQuery Pro v3.5.1
33
*
44
* Copyright (c) 2012-2021 Paramvir Dhindsa (http://paramquery.com)
55
* Released under GNU General Public License v3
@@ -859,7 +859,7 @@
859859
var options = this.options,
860860
bts = options.bootstrap,
861861
strPage = options.strPage,
862-
arr = strPage.split(" "),
862+
arr = strPage.split(/\s/),
863863
str = [];
864864
for (var i = 0, len = arr.length; i < len; i++) {
865865
var ele = arr[i];

pqgrid.min.js

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

0 commit comments

Comments
 (0)