This commit is contained in:
t1m0n 2016-09-21 12:31:32 +03:00
parent ec46ba154e
commit f59bf95d34
6 changed files with 9 additions and 5 deletions

View File

@ -26,6 +26,10 @@ $('.my-datepicker').datepicker([options])
## Change log
### v2.2.2
* fixed min,max dates handling
### v2.2.1
* changed RegExp for recognizing date parts
* changed jquery version dependency

View File

@ -1,6 +1,6 @@
{
"name": "air-datepicker",
"version": "2.2.1",
"version": "2.2.2",
"authors": [
"t1m0n <t1m0n.tr@gmail.com>"
],

View File

@ -1,5 +1,5 @@
;(function (window, $, undefined) { ;(function () {
var VERSION = '2.2.1',
var VERSION = '2.2.2',
pluginName = 'datepicker',
autoInitSelector = '.datepicker-here',
$body, $datepickersContainer,

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "air-datepicker",
"version": "2.2.1",
"version": "2.2.2",
"devDependencies": {
"autoprefixer": "^6.1.0",
"browserify": "^13.0.0",

View File

@ -1,5 +1,5 @@
;(function () {
var VERSION = '2.2.1',
var VERSION = '2.2.2',
pluginName = 'datepicker',
autoInitSelector = '.datepicker-here',
$body, $datepickersContainer,