mirror of
https://github.com/xdan/datetimepicker.git
synced 2024-11-18 06:24:22 +00:00
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
/**
|
|
* @preserve jQuery DateTimePicker plugin v2.4.1
|
|
* @homepage http://xdsoft.net/jqplugins/datetimepicker/
|
|
* (c) 2014, Chupurnov Valeriy.
|
|
*/
|
|
/*global document,window,jQuery,setTimeout,clearTimeout*/
|
|
(function(a) {
|
|
('function' == typeof(define) && define.amd) ? define(['jquery', 'moment', 'jquery.mousewheel'], a): 'object' == typeof exports ? module.exports = a : a(jQuery);
|
|
})(function($, moment) {
|
|
'use strict';
|
|
Date.prototype.dateFormat = function(format) {
|
|
return moment(this).format(format);
|
|
};
|
|
Date.parseDate = function(date, format) {
|
|
return moment(date, format).toDate();
|
|
};
|
|
var defaultFormat= 'YYYY/MM/DD HH:mm',
|
|
defaultFormatTime= 'HH:mm',
|
|
defaultFormatDate= 'YYYY/MM/DD';
|
|
var I18N = {
|
|
months:'months',
|
|
dayOfWeek:'weekdaysShort'
|
|
};
|
|
var getI18n=function(lang, prop){
|
|
return moment[I18N[prop]]();
|
|
};
|
|
var setDayOfWeekStart=function(options){
|
|
options.dayOfWeekStart=moment.localeData().firstDayOfWeek();
|
|
};
|
|
//= datetimepicker.base.js
|
|
}); |