";
sDTPickerComp += "
" + oDTP.settings.incrementButtonContent + "";
- sDTPickerComp += "
";
+ if(oDTP.settings.readonlyInputs)
+ sDTPickerComp += "
";
+ else
+ sDTPickerComp += "
";
sDTPickerComp += "
" + oDTP.settings.decrementButtonContent + "";
if(oDTP.settings.labels)
sDTPickerComp += "
" + oDTP.settings.labels[sFieldName] + "
";
@@ -1443,7 +1478,7 @@ $.cf = {
var sTempStr = sHeader + sDTPickerComp + sDTPickerButtons;
- $(oDTP.element).find('.dtpicker-subcontent').html(sTempStr);
+ $(oDTP.element).find(".dtpicker-subcontent").html(sTempStr);
oDTP._setCurrentDate();
oDTP._addEventHandlersForPicker();
@@ -1452,116 +1487,186 @@ $.cf = {
_addEventHandlersForPicker: function()
{
var oDTP = this;
+ var classType, keyCode, $nextElem;
- $(document).on("click.DateTimePicker", function(e)
+ if(!oDTP.settings.isInline)
{
- oDTP._hidePicker("");
- });
+ $(document).on("click.DateTimePicker", function(e)
+ {
+ oDTP._hidePicker("");
+ });
+ }
$(document).on("keydown.DateTimePicker", function(e)
{
- if(! $('.dtpicker-compValue').is(':focus') && parseInt(e.keyCode ? e.keyCode : e.which) === 9)
+ keyCode = parseInt(e.keyCode ? e.keyCode : e.which);
+ if(! $(".dtpicker-compValue").is(":focus") && keyCode === 9) // TAB
{
oDTP._setButtonAction(true);
$("[tabIndex=" + (oDTP.oData.iTabIndex + 1) + "]").focus();
return false;
}
+ else if($(".dtpicker-compValue").is(":focus"))
+ {
+ /*if(keyCode === 37) // Left Arrow
+ {
+ oDTP._setButtonAction(true);
+ $nextElem = $(".dtpicker-compValue:focus").parent().prev().children(".dtpicker-compValue");
+ $nextElem.focus();
+ console.log('Left Arrow ');
+ console.log($nextElem);
+ return false;
+ }
+ else if(keyCode === 39) // Right Arrow
+ {
+ oDTP._setButtonAction(true);
+ var compVal = $(".dtpicker-compValue:focus");
+ $nextElem = $(".dtpicker-compValue:focus").parent(".dtpicker-comp").next().children(".dtpicker-compValue");
+ $nextElem.focus();
+ console.log('Right Arrow ');
+ console.log($nextElem);
+ return false;
+ }
+ else*/
+ if(keyCode === 38) // Up Arrow
+ {
+ classType = $(".dtpicker-compValue:focus").parent().attr("class");
+ oDTP._incrementDecrementActionsUsingArrowAndMouse(classType, "inc");
+ return false;
+ }
+ else if(keyCode === 40) // Down Arrow
+ {
+ classType = $(".dtpicker-compValue:focus").parent().attr("class");
+ oDTP._incrementDecrementActionsUsingArrowAndMouse(classType, "dec");
+ return false;
+ }
+ }
});
- $(document).on("keydown.DateTimePicker", function(e)
+ if(!oDTP.settings.isInline)
{
- if(! $('.dtpicker-compValue').is(':focus') && parseInt(e.keyCode ? e.keyCode : e.which) !== 9)
+ $(document).on("keydown.DateTimePicker", function(e)
{
- oDTP._hidePicker("");
- }
- });
+ keyCode = parseInt(e.keyCode ? e.keyCode : e.which);
+ console.log("keydown " + keyCode);
+ if(! $(".dtpicker-compValue").is(":focus") && keyCode !== 9)
+ {
+ //if(keyCode !== 37 && keyCode !== 39)
+ oDTP._hidePicker("");
+ }
+ });
+ }
$(".dtpicker-cont *").click(function(e)
{
e.stopPropagation();
});
- $('.dtpicker-compValue').not('.month .dtpicker-compValue, .meridiem .dtpicker-compValue').keyup(function()
- {
- this.value = this.value.replace(/[^0-9\.]/g,'');
- });
-
- $('.dtpicker-compValue').focus(function()
+ if(!oDTP.settings.readonlyInputs)
{
- oDTP.oData.bElemFocused = true;
- $(this).select();
- });
-
- $('.dtpicker-compValue').blur(function()
- {
- oDTP._getValuesFromInputBoxes();
- oDTP._setCurrentDate();
+ $(".dtpicker-compValue").not(".month .dtpicker-compValue, .meridiem .dtpicker-compValue").keyup(function()
+ {
+ this.value = this.value.replace(/[^0-9\.]/g,"");
+ });
+
+ $(".dtpicker-compValue").focus(function()
+ {
+ oDTP.oData.bElemFocused = true;
+ $(this).select();
+ });
- oDTP.oData.bElemFocused = false;
- var $oParentElem = $(this).parent().parent();
- setTimeout(function()
+ $(".dtpicker-compValue").blur(function()
{
- if($oParentElem.is(':last-child') && !oDTP.oData.bElemFocused)
+ oDTP._getValuesFromInputBoxes();
+ oDTP._setCurrentDate();
+
+ oDTP.oData.bElemFocused = false;
+ var $oParentElem = $(this).parent().parent();
+ setTimeout(function()
{
- oDTP._setButtonAction(false);
- }
- }, 50);
- });
-
- $(".dtpicker-compValue").keyup(function(e)
- {
- var $oTextField = $(this),
-
- sTextBoxVal = $oTextField.val(),
- iLength = sTextBoxVal.length,
- sNewTextBoxVal;
+ if($oParentElem.is(":last-child") && !oDTP.oData.bElemFocused)
+ {
+ oDTP._setButtonAction(false);
+ }
+ }, 50);
+ });
- if($oTextField.parent().hasClass("day") || $oTextField.parent().hasClass("hour") || $oTextField.parent().hasClass("minutes") || $oTextField.parent().hasClass("meridiem"))
+ $(".dtpicker-compValue").keyup(function(e)
{
- if(iLength > 2)
+ var $oTextField = $(this),
+
+ sTextBoxVal = $oTextField.val(),
+ iLength = sTextBoxVal.length,
+ sNewTextBoxVal;
+
+ if($oTextField.parent().hasClass("day") || $oTextField.parent().hasClass("hour") || $oTextField.parent().hasClass("minutes") || $oTextField.parent().hasClass("meridiem"))
{
- sNewTextBoxVal = sTextBoxVal.slice(0, 2);
- $oTextField.val(sNewTextBoxVal);
+ if(iLength > 2)
+ {
+ sNewTextBoxVal = sTextBoxVal.slice(0, 2);
+ $oTextField.val(sNewTextBoxVal);
+ }
}
- }
- else if($oTextField.parent().hasClass("month"))
- {
- if(iLength > 3)
+ else if($oTextField.parent().hasClass("month"))
{
- sNewTextBoxVal = sTextBoxVal.slice(0, 3);
- $oTextField.val(sNewTextBoxVal);
+ if(iLength > 3)
+ {
+ sNewTextBoxVal = sTextBoxVal.slice(0, 3);
+ $oTextField.val(sNewTextBoxVal);
+ }
}
- }
- else if($oTextField.parent().hasClass("year"))
+ else if($oTextField.parent().hasClass("year"))
+ {
+ if(iLength > 4)
+ {
+ sNewTextBoxVal = sTextBoxVal.slice(0, 4);
+ $oTextField.val(sNewTextBoxVal);
+ }
+ }
+
+ if(parseInt(e.keyCode ? e.keyCode : e.which) === 9)
+ $(this).select();
+ });
+ }
+
+ $(oDTP.element).find(".dtpicker-compValue").on("mousewheel DOMMouseScroll onmousewheel", function(e)
+ {
+ if($(".dtpicker-compValue").is(":focus"))
{
- if(iLength > 4)
+ var delta = Math.max(-1, Math.min(1, e.originalEvent.wheelDelta));
+
+ if(delta > 0)
{
- sNewTextBoxVal = sTextBoxVal.slice(0, 4);
- $oTextField.val(sNewTextBoxVal);
+ classType = $(".dtpicker-compValue:focus").parent().attr("class");
+ oDTP._incrementDecrementActionsUsingArrowAndMouse(classType, "inc");
}
+ else
+ {
+ classType = $(".dtpicker-compValue:focus").parent().attr("class");
+ oDTP._incrementDecrementActionsUsingArrowAndMouse(classType, "dec");
+ }
+ return false;
}
-
- if(parseInt(e.keyCode ? e.keyCode : e.which) === 9)
- $(this).select();
});
//-----------------------------------------------------------------------
- $(oDTP.element).find('.dtpicker-close').click(function(e)
+ $(oDTP.element).find(".dtpicker-close").click(function(e)
{
if(oDTP.settings.buttonClicked)
oDTP.settings.buttonClicked.call(oDTP, "CLOSE", oDTP.oData.oInputElement);
- oDTP._hidePicker("");
+ if(!oDTP.settings.isInline)
+ oDTP._hidePicker("");
});
- $(oDTP.element).find('.dtpicker-buttonSet').click(function(e)
+ $(oDTP.element).find(".dtpicker-buttonSet").click(function(e)
{
if(oDTP.settings.buttonClicked)
oDTP.settings.buttonClicked.call(oDTP, "SET", oDTP.oData.oInputElement);
oDTP._setButtonAction(false);
});
- $(oDTP.element).find('.dtpicker-buttonClear').click(function(e)
+ $(oDTP.element).find(".dtpicker-buttonClear").click(function(e)
{
if(oDTP.settings.buttonClicked)
oDTP.settings.buttonClicked.call(oDTP, "CLEAR", oDTP.oData.oInputElement);
@@ -1572,7 +1677,7 @@ $.cf = {
if(oDTP.settings.captureTouchHold)
{
- $(".dtpicker-cont *").on('touchstart touchmove touchend', function(e)
+ $(".dtpicker-cont *").on("touchstart touchmove touchend", function(e)
{
oDTP._clearIntervalForTouchEvents();
});
@@ -1747,7 +1852,7 @@ $.cf = {
{
var oDTP = this;
- $(oDTP.element).find("." + type + " .increment, ." + type + " .increment *").on('touchstart', function(e)
+ $(oDTP.element).find("." + type + " .increment, ." + type + " .increment *").on("touchstart", function(e)
{
e.stopPropagation();
if(!$.cf._isValid(oDTP.oData.sTouchButton))
@@ -1759,13 +1864,13 @@ $.cf = {
}
});
- $(oDTP.element).find("." + type + " .increment, ." + type + " .increment *").on('touchend', function(e)
+ $(oDTP.element).find("." + type + " .increment, ." + type + " .increment *").on("touchend", function(e)
{
e.stopPropagation();
oDTP._clearIntervalForTouchEvents();
});
- $(oDTP.element).find("." + type + " .decrement, ." + type + " .decrement *").on('touchstart', function(e)
+ $(oDTP.element).find("." + type + " .decrement, ." + type + " .decrement *").on("touchstart", function(e)
{
e.stopPropagation();
if(!$.cf._isValid(oDTP.oData.sTouchButton))
@@ -1777,7 +1882,7 @@ $.cf = {
}
});
- $(oDTP.element).find("." + type + " .decrement, ." + type + " .decrement *").on('touchend', function(e)
+ $(oDTP.element).find("." + type + " .decrement, ." + type + " .decrement *").on("touchend", function(e)
{
e.stopPropagation();
oDTP._clearIntervalForTouchEvents();
@@ -1867,6 +1972,63 @@ $.cf = {
}
oDTP.oData.oTimeInterval = null;
},
+
+ _incrementDecrementActionsUsingArrowAndMouse: function(type, action)
+ {
+ var oDTP = this;
+
+ if(type.includes("day") && action === "inc")
+ {
+ oDTP.oData.iCurrentDay++;
+ }
+ else if(type.includes("day") && action === "dec")
+ {
+ oDTP.oData.iCurrentDay--;
+ }
+ else if(type.includes("month") && action === "inc")
+ {
+ oDTP.oData.iCurrentMonth++;
+ }
+ else if(type.includes("month") && action === "dec")
+ {
+ oDTP.oData.iCurrentMonth--;
+ }
+ else if(type.includes("year") && action === "inc")
+ {
+ oDTP.oData.iCurrentYear++;
+ }
+ else if(type.includes("year") && action === "dec")
+ {
+ oDTP.oData.iCurrentYear--;
+ }
+ else if(type.includes("hour") && action === "inc")
+ {
+ oDTP.oData.iCurrentHour++;
+ }
+ else if(type.includes("hour") && action === "dec")
+ {
+ oDTP.oData.iCurrentHour--;
+ }
+ else if(type.includes("minutes") && action === "inc")
+ {
+ oDTP.oData.iCurrentMinutes += oDTP.settings.minuteInterval;
+ }
+ else if(type.includes("minutes") && action === "dec")
+ {
+ oDTP.oData.iCurrentMinutes -= oDTP.settings.minuteInterval;
+ }
+ else if(type.includes("seconds") && action === "inc")
+ {
+ oDTP.oData.iCurrentSeconds += oDTP.settings.secondsInterval;
+ }
+ else if(type.includes("seconds") && action === "dec")
+ {
+ oDTP.oData.iCurrentSeconds -= oDTP.settings.secondsInterval;
+ }
+
+ oDTP._setCurrentDate();
+ oDTP._setOutputOnIncrementOrDecrement();
+ },
//-----------------------------------------------------------------
@@ -2163,7 +2325,7 @@ $.cf = {
}
else
{
- if (Object.prototype.toString.call(oDTP.oData.dCurrentDate) === '[object Date]' && isFinite(oDTP.oData.dCurrentDate))
+ if (Object.prototype.toString.call(oDTP.oData.dCurrentDate) === "[object Date]" && isFinite(oDTP.oData.dCurrentDate))
dTemp = new Date(oDTP.oData.dCurrentDate);
else
dTemp = new Date();
@@ -2344,21 +2506,21 @@ $.cf = {
oFormattedDate = oDTP._formatDate();
- $(oDTP.element).find('.day .dtpicker-compValue').val(oFormattedDate.dd);
+ $(oDTP.element).find(".day .dtpicker-compValue").val(oFormattedDate.dd);
if(oDTP.oData.bDateMode)
{
if(oDTP.oData.bArrMatchFormat[4]) // "MM-yyyy"
- $(oDTP.element).find('.month .dtpicker-compValue').val(oFormattedDate.MM);
+ $(oDTP.element).find(".month .dtpicker-compValue").val(oFormattedDate.MM);
else if(oDTP.oData.bArrMatchFormat[6]) // "MMMM yyyy"
- $(oDTP.element).find('.month .dtpicker-compValue').val(oFormattedDate.month);
+ $(oDTP.element).find(".month .dtpicker-compValue").val(oFormattedDate.month);
else
- $(oDTP.element).find('.month .dtpicker-compValue').val(oFormattedDate.monthShort);
+ $(oDTP.element).find(".month .dtpicker-compValue").val(oFormattedDate.monthShort);
}
else
- $(oDTP.element).find('.month .dtpicker-compValue').val(oFormattedDate.monthShort);
+ $(oDTP.element).find(".month .dtpicker-compValue").val(oFormattedDate.monthShort);
- $(oDTP.element).find('.year .dtpicker-compValue').val(oFormattedDate.yyyy);
+ $(oDTP.element).find(".year .dtpicker-compValue").val(oFormattedDate.yyyy);
if(oDTP.settings.formatHumanDate)
{
@@ -2384,10 +2546,10 @@ $.cf = {
oFormattedTime = oDTP._formatTime();
if(oDTP.oData.bIs12Hour)
- $(oDTP.element).find('.meridiem .dtpicker-compValue').val(oDTP.oData.sCurrentMeridiem);
- $(oDTP.element).find('.hour .dtpicker-compValue').val(oFormattedTime.hour);
- $(oDTP.element).find('.minutes .dtpicker-compValue').val(oFormattedTime.mm);
- $(oDTP.element).find('.seconds .dtpicker-compValue').val(oFormattedTime.ss);
+ $(oDTP.element).find(".meridiem .dtpicker-compValue").val(oDTP.oData.sCurrentMeridiem);
+ $(oDTP.element).find(".hour .dtpicker-compValue").val(oFormattedTime.hour);
+ $(oDTP.element).find(".minutes .dtpicker-compValue").val(oFormattedTime.mm);
+ $(oDTP.element).find(".seconds .dtpicker-compValue").val(oFormattedTime.ss);
if(oDTP.settings.formatHumanDate)
{
@@ -2440,7 +2602,7 @@ $.cf = {
sDateTime = sTime;
}
- $(oDTP.element).find('.dtpicker-value').html(sDateTime);
+ $(oDTP.element).find(".dtpicker-value").html(sDateTime);
oDTP._setButtons();
},
@@ -2538,7 +2700,7 @@ $.cf = {
_setButtons: function()
{
var oDTP = this;
- $(oDTP.element).find('.dtpicker-compButton').removeClass("dtpicker-compButtonDisable").addClass('dtpicker-compButtonEnable');
+ $(oDTP.element).find(".dtpicker-compButton").removeClass("dtpicker-compButtonDisable").addClass("dtpicker-compButtonEnable");
var dTempDate;
if(oDTP.oData.dMaxValue !== null)
@@ -2683,28 +2845,32 @@ $.cf = {
setIsPopup: function(bIsPopup)
{
var oDTP = this;
- oDTP.settings.isPopup = bIsPopup;
-
- if($(oDTP.element).css("display") !== "none")
- oDTP._hidePicker(0);
- if(oDTP.settings.isPopup)
+ if(!oDTP.settings.isInline)
{
- $(oDTP.element).addClass("dtpicker-mobile");
-
- $(oDTP.element).css({position: "fixed", top: 0, left: 0, width: "100%", height: "100%"});
- }
- else
- {
- $(oDTP.element).removeClass("dtpicker-mobile");
-
- if(oDTP.oData.oInputElement !== null)
+ oDTP.settings.isPopup = bIsPopup;
+
+ if($(oDTP.element).css("display") !== "none")
+ oDTP._hidePicker(0);
+
+ if(oDTP.settings.isPopup)
{
- var iElemTop = $(oDTP.oData.oInputElement).offset().top + $(oDTP.oData.oInputElement).outerHeight(),
- iElemLeft = $(oDTP.oData.oInputElement).offset().left,
- iElemWidth = $(oDTP.oData.oInputElement).outerWidth();
-
- $(oDTP.element).css({position: "absolute", top: iElemTop, left: iElemLeft, width: iElemWidth, height: "auto"});
+ $(oDTP.element).addClass("dtpicker-mobile");
+
+ $(oDTP.element).css({position: "fixed", top: 0, left: 0, width: "100%", height: "100%"});
+ }
+ else
+ {
+ $(oDTP.element).removeClass("dtpicker-mobile");
+
+ if(oDTP.oData.oInputElement !== null)
+ {
+ var iElemTop = $(oDTP.oData.oInputElement).offset().top + $(oDTP.oData.oInputElement).outerHeight(),
+ iElemLeft = $(oDTP.oData.oInputElement).offset().left,
+ iElemWidth = $(oDTP.oData.oInputElement).outerWidth();
+
+ $(oDTP.element).css({position: "absolute", top: iElemTop, left: iElemLeft, width: iElemWidth, height: "auto"});
+ }
}
}
},
@@ -2778,4 +2944,5 @@ $.cf = {
};
-}));
\ No newline at end of file
+}));
+
diff --git a/src/DateTimePicker_iOS_fix.js b/src/DateTimePicker_iOS_fix.js
index 9fbd9f2..89b6a46 100644
--- a/src/DateTimePicker_iOS_fix.js
+++ b/src/DateTimePicker_iOS_fix.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
-Version 0.1.30
+Version 0.1.31
Copyright (c)2016 Curious Solutions LLP, Neha Kadam, and Yanike Mann
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-de.js b/src/i18n/DateTimePicker-i18n-de.js
index 587ccbb..98e40ba 100755
--- a/src/i18n/DateTimePicker-i18n-de.js
+++ b/src/i18n/DateTimePicker-i18n-de.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-en.js b/src/i18n/DateTimePicker-i18n-en.js
index 398cd2c..18ddbde 100755
--- a/src/i18n/DateTimePicker-i18n-en.js
+++ b/src/i18n/DateTimePicker-i18n-en.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-es.js b/src/i18n/DateTimePicker-i18n-es.js
index 690653a..997258b 100644
--- a/src/i18n/DateTimePicker-i18n-es.js
+++ b/src/i18n/DateTimePicker-i18n-es.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-fr.js b/src/i18n/DateTimePicker-i18n-fr.js
index f0f833c..7a4516a 100755
--- a/src/i18n/DateTimePicker-i18n-fr.js
+++ b/src/i18n/DateTimePicker-i18n-fr.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-it.js b/src/i18n/DateTimePicker-i18n-it.js
index 9cd0dc0..fee0089 100644
--- a/src/i18n/DateTimePicker-i18n-it.js
+++ b/src/i18n/DateTimePicker-i18n-it.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-ja.js b/src/i18n/DateTimePicker-i18n-ja.js
index 7f6772b..cb05da7 100755
--- a/src/i18n/DateTimePicker-i18n-ja.js
+++ b/src/i18n/DateTimePicker-i18n-ja.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-nb.js b/src/i18n/DateTimePicker-i18n-nb.js
index 40664ae..8b6843f 100644
--- a/src/i18n/DateTimePicker-i18n-nb.js
+++ b/src/i18n/DateTimePicker-i18n-nb.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-nl.js b/src/i18n/DateTimePicker-i18n-nl.js
index f5e5c31..b5acff5 100644
--- a/src/i18n/DateTimePicker-i18n-nl.js
+++ b/src/i18n/DateTimePicker-i18n-nl.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-ro.js b/src/i18n/DateTimePicker-i18n-ro.js
index e2c4261..9b401ab 100644
--- a/src/i18n/DateTimePicker-i18n-ro.js
+++ b/src/i18n/DateTimePicker-i18n-ro.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-ru.js b/src/i18n/DateTimePicker-i18n-ru.js
index f704f77..ffa25bc 100644
--- a/src/i18n/DateTimePicker-i18n-ru.js
+++ b/src/i18n/DateTimePicker-i18n-ru.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-uk.js b/src/i18n/DateTimePicker-i18n-uk.js
index 6b744f4..ad738ec 100644
--- a/src/i18n/DateTimePicker-i18n-uk.js
+++ b/src/i18n/DateTimePicker-i18n-uk.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n-zh-TW.js b/src/i18n/DateTimePicker-i18n-zh-TW.js
index 2442915..fec1fa4 100755
--- a/src/i18n/DateTimePicker-i18n-zh-TW.js
+++ b/src/i18n/DateTimePicker-i18n-zh-TW.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DateTimePicker-i18n.js b/src/i18n/DateTimePicker-i18n.js
index 68fa1b8..10a9012 100755
--- a/src/i18n/DateTimePicker-i18n.js
+++ b/src/i18n/DateTimePicker-i18n.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker
diff --git a/src/i18n/DatetimePicker-i18n-zh-CN.js b/src/i18n/DatetimePicker-i18n-zh-CN.js
index 3336058..d3904bc 100644
--- a/src/i18n/DatetimePicker-i18n-zh-CN.js
+++ b/src/i18n/DatetimePicker-i18n-zh-CN.js
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
- Version 0.1.30
+ Version 0.1.31
Copyright (c)2016 Curious Solutions LLP and Neha Kadam
http://curioussolutions.github.io/DateTimePicker
https://github.com/CuriousSolutions/DateTimePicker