aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2015-02-13 08:45:28 +0000
committermistic100 <mistic@piwigo.org>2015-02-13 08:45:28 +0000
commit93163abc77b94b7448f9b8ae1628ab80541919e7 (patch)
tree4fd41745475a5fa08fec1aae96bbee3ac34dd1fe /admin/themes
parent0bf46b68542880fa0c5951bf124b7b20f4feb217 (diff)
bug 3190: Datetime picker, can't change year on Chrome & IE11
git-svn-id: http://piwigo.org/svn/trunk@30958 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes')
-rw-r--r--admin/themes/default/js/datepicker.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/admin/themes/default/js/datepicker.js b/admin/themes/default/js/datepicker.js
index cabf1f479..a550e197b 100644
--- a/admin/themes/default/js/datepicker.js
+++ b/admin/themes/default/js/datepicker.js
@@ -30,16 +30,12 @@ $.datepicker._selectMonthYear = debounce(function(id, select, period) {
inst['drawYear'] = '';
}
else {
- var pos = getCursor($('.ui-datepicker-year')[0]);
-
inst['selectedYear'] = inst['drawYear'] = val;
this._notifyChange(inst);
this._adjustDate(target);
$('.ui-datepicker-year').focus();
-
- setCursor($('.ui-datepicker-year')[0], pos);
}
}
}, 500);
@@ -170,46 +166,6 @@ jQuery.fn.pwgDatepicker = function(settings) {
});
};
-
-// functions for custom year input
-function setCursor(node,pos){
- var node = (typeof node == "string" || node instanceof String) ? document.getElementById(node) : node;
-
- if (!node) {
- return false;
- }
- else if(node.createTextRange) {
- var textRange = node.createTextRange();
- textRange.collapse(true);
- textRange.moveEnd(pos);
- textRange.moveStart(pos);
- textRange.select();
- return true;
- }
- else if(node.setSelectionRange) {
- node.setSelectionRange(pos,pos);
- return true;
- }
-
- return false;
-}
-
-function getCursor(input) {
- // Internet Explorer Caret Position (TextArea)
- if (document.selection && document.selection.createRange) {
- var range = document.selection.createRange();
- var bookmark = range.getBookmark();
- return bookmark.charCodeAt(2) - 2;
- }
- else {
- // Firefox Caret Position (TextArea)
- if (input.setSelectionRange)
- return input.selectionStart;
- }
-
- return 0;
-}
-
function debounce(func, wait, immediate) {
var timeout;
return function() {