This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2013-07-02 08:46:44 +00:00
|
|
|
!function ($) {
|
|
|
|
$.fn.datetimepick = function() {
|
|
|
|
var $this = this,
|
2013-08-09 07:07:05 +00:00
|
|
|
$data = $this.data();
|
|
|
|
$this.datetimepicker({
|
|
|
|
format: $data.dateFormat,
|
|
|
|
pickTime: $data.picktime,
|
|
|
|
language: $data.language,
|
|
|
|
});
|
2013-07-02 08:46:44 +00:00
|
|
|
}
|
|
|
|
}(window.jQuery);
|
|
|
|
|
|
|
|
$(function(){
|
2013-08-09 07:07:05 +00:00
|
|
|
$('.datetimepick').each(function() {
|
|
|
|
$(this).datetimepick();
|
|
|
|
});
|
2013-07-02 08:46:44 +00:00
|
|
|
});
|