Skip to content

Fixed invalid regular expression error on search box. #268

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ src/*.map
*.diff
*.patch
.DS_Store
settings.json
settings.json
bower_components/
1 change: 1 addition & 0 deletions demo/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
return "<a href=\"#\">" + column.id + ": " + row.id + "</a>";
}
},
caseSensitive: false,
rowCount: [-1, 10, 50, 75]
});
}
Expand Down
Binary file removed dist/jQuery.Bootgrid.1.3.1.nupkg
Binary file not shown.
Binary file modified dist/jquery.bootgrid-1.3.1.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/jquery.bootgrid.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* jQuery Bootgrid v1.3.1 - 02/17/2016
* Copyright (c) 2014-2016 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
.bootgrid-header,
Expand Down
18 changes: 9 additions & 9 deletions dist/jquery.bootgrid.fa.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/*!
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* jQuery Bootgrid v1.3.1 - 02/17/2016
* Copyright (c) 2014-2016 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
;(function ($, window, undefined)
{
/*jshint validthis: true */
"use strict";

$.extend($.fn.bootgrid.Constructor.defaults.css, {
icon: "icon fa",
iconColumns: "fa-th-list",
iconDown: "fa-sort-desc",
iconRefresh: "fa-refresh",
iconSearch: "fa-search",
iconUp: "fa-sort-asc"
$.extend($.fn.bootgrid.Constructor.defaults.css, {
icon: "icon fa",
iconColumns: "fa-th-list",
iconDown: "fa-sort-desc",
iconRefresh: "fa-refresh",
iconSearch: "fa-search",
iconUp: "fa-sort-asc"
});
})(jQuery, window);
4 changes: 2 additions & 2 deletions dist/jquery.bootgrid.fa.min.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* jQuery Bootgrid v1.3.1 - 09/11/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* jQuery Bootgrid v1.3.1 - 02/17/2016
* Copyright (c) 2014-2016 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
!function(a,b,c){"use strict";a.extend(a.fn.bootgrid.Constructor.defaults.css,{icon:"icon fa",iconColumns:"fa-th-list",iconDown:"fa-sort-desc",iconRefresh:"fa-refresh",iconSearch:"fa-search",iconUp:"fa-sort-asc"})}(jQuery,window);
Loading