Skip to content

Commit

Permalink
0.9.1 final
Browse files Browse the repository at this point in the history
  • Loading branch information
vedmack committed Nov 2, 2016
1 parent c1caa9b commit 4efab91
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Fixed autocomplete in cumulative mode filtering
* Fixed chosen in cumulative mode filtering https://github.com/vedmack/yadcf/issues/344
* Support jQuery 3 (for .dataTable({}).yadcf api) https://github.com/vedmack/yadcf/issues/360
* Some of additional fixed issues https://github.com/vedmack/yadcf/issues/346
* Some of additional fixed issues https://github.com/vedmack/yadcf/issues/346 / https://github.com/vedmack/yadcf/pull/362 / https://github.com/vedmack/yadcf/issues/363



Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,4 @@ License:
=====

Copyright (c) 2014 Daniel Reznick, released under the MIT license

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Daniel Reznick",
"name": "yadcf",
"description": "This jQuery plug-in allows the user to easily add filter components to table columns, the plug-in works on top of the DataTables jQuery plug-in",
"version": "0.9.0",
"version": "0.9.1",
"homepage": "http://yadcf-showcase.appspot.com/",
"repository": {
"type": "git",
Expand Down
5 changes: 4 additions & 1 deletion jquery.dataTables.yadcf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Yet Another DataTables Column Filter - (yadcf)
*
* File: jquery.dataTables.yadcf.js
* Version: 0.9.1.beta.6 (grab latest stable from https://github.com/vedmack/yadcf/releases)
* Version: 0.9.1
*
* Author: Daniel Reznick
* Info: https://github.com/vedmack/yadcf
Expand Down Expand Up @@ -575,6 +575,9 @@
return;
}
for (i = 0; i < options_arg.length; i++) {
if (options_arg[i].date_format !== undefined && options_arg[i].moment_date_format === undefined) {
options_arg[i].moment_date_format = options_arg[i].date_format;
}
if (options_arg[i].select_type === 'select2') {
default_options.select_type_options = {
adaptContainerCssClass: adaptContainerCssClassImpl
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": "yadcf",
"version": "0.9.0",
"version": "0.9.1",
"title": "Yet Another DataTables Column Filter (yadcf)",
"description": "This jQuery plug-in allows the user to easily add filter components to table columns, the plug-in works on top of the DataTables jQuery plug-in.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion yadcf.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"plugin",
"column"
],
"version": "0.9.0",
"version": "0.9.1",
"author": {
"name": "Daniel Reznick",
"url": "https://github.com/vedmack"
Expand Down

0 comments on commit 4efab91

Please sign in to comment.