Skip to content

Commit

Permalink
Update the build
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytomov committed Jun 26, 2017
1 parent 474e801 commit c18c352
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
10 changes: 3 additions & 7 deletions js/jquery.jqGrid.js
@@ -1,6 +1,6 @@
/**
*
* @license Guriddo jqGrid JS - v5.2.1 - 2017-06-23
* @license Guriddo jqGrid JS - v5.2.1 - 2017-06-26
* Copyright(c) 2008, Tony Tomov, tony@trirand.com
*
* License: http://guriddo.net/?page_id=103334
Expand Down Expand Up @@ -15931,12 +15931,8 @@ $.extend($.jgrid,{
return JSON.parse(str,function(key, value){
if(typeof value === "string" && value.indexOf("function") !== -1) {
var sv = value.split(" ");
sv[0] = $.trim( sv[0] );
if( (sv[0] === 'function' ||
sv[0] === 'function(' ||
sv[0] === 'function()'
)
&& value.trim().slice(-1) === "}") {
sv[0] = $.trim( sv[0].toLowerCase() );
if( (sv[0].indexOf('function') === 0) && value.trim().slice(-1) === "}") {
return eval('('+value+')');
} else {
return value;
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.jqGrid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.jqGrid.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/minified/grid.utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c18c352

Please sign in to comment.