Skip to content

Commit

Permalink
v3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
paramquery committed Jul 13, 2021
1 parent ea7cc17 commit 23bc215
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 13 deletions.
9 changes: 9 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 3.5.1 (07/12/2021)
==========================

Fixes:
++++++
Localization
{0} in strPage displayed as such in ja localization


Version 3.5.0 (07/01/2021)
==========================

Expand Down
6 changes: 3 additions & 3 deletions array.htm
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<!--jQuery dependencies-->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://unpkg.com/jquery@2.2.4/dist/jquery.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>

<!--PQ Grid files-->
<link rel="stylesheet" href="pqgrid.min.css" />
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pqGrid",
"description": "Data grid with spreadsheet features, row grouping, sorting, filtering, etc",
"version": "3.5.0",
"version": "3.5.1",
"author": {
"name": "Paramvir Singh Dhindsa",
"email": "pdhindsa@paramquery.com",
Expand Down
8 changes: 4 additions & 4 deletions json.htm
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<html>
<head>
<!--jQuery dependencies-->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>

<script src="https://unpkg.com/jquery@2.2.4/dist/jquery.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<!--PQ Grid files-->
<link rel="stylesheet" href="pqgrid.min.css" />
<link rel="stylesheet" href="pqgrid.ui.min.css" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pqgridf",
"version": "3.5.0",
"version": "3.5.1",
"main": "index.js",
"author": {
"name": "Paramvir Dhindsa",
Expand Down
4 changes: 2 additions & 2 deletions pqgrid.dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* ParamQuery Pro v3.5.0
* ParamQuery Pro v3.5.1
*
* Copyright (c) 2012-2021 Paramvir Dhindsa (http://paramquery.com)
* Released under GNU General Public License v3
Expand Down Expand Up @@ -859,7 +859,7 @@
var options = this.options,
bts = options.bootstrap,
strPage = options.strPage,
arr = strPage.split(" "),
arr = strPage.split(/\s/),
str = [];
for (var i = 0, len = arr.length; i < len; i++) {
var ele = arr[i];
Expand Down
4 changes: 2 additions & 2 deletions pqgrid.min.js

Large diffs are not rendered by default.

0 comments on commit 23bc215

Please sign in to comment.