Skip to content

Commit

Permalink
Publishing 4.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytomov committed Feb 20, 2014
1 parent 03e244d commit 7216e38
Show file tree
Hide file tree
Showing 4 changed files with 1,114 additions and 541 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jqGrid",
"version": "4.5.4",
"version": "4.6.0",
"main": [
"js/i18n/grid.locale-en.js",
"js/jquery.jqGrid.js",
Expand Down
2 changes: 1 addition & 1 deletion jqGrid.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"grouping",
"searching"
],
"version": "4.5.4",
"version": "4.6.0",
"author": {
"name": "Tony Tomov",
"email": "[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions js/grid.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
// @compilation_level SIMPLE_OPTIMIZATIONS

/**
* @license jqGrid 4.5.4 - jQuery Grid
* @license jqGrid 4.6.0 - jQuery Grid
* Copyright (c) 2008, Tony Tomov, [email protected]
* Dual licensed under the MIT and GPL licenses
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
* Date: 2013-10-06
* Date: 2014-02-20
*/
//jsHint options
/*jshint evil:true, eqeqeq:false, eqnull:true, devel:true */
Expand All @@ -17,7 +17,7 @@
"use strict";
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
version : "4.5.4",
version : "4.6.0",
htmlDecode : function(value){
if(value && (value===' ' || value===' ' || (value.length===1 && value.charCodeAt(0)===160))) { return "";}
return !value ? value : String(value).replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"').replace(/&amp;/g, "&");
Expand Down
Loading

0 comments on commit 7216e38

Please sign in to comment.