diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 27330f6..d75b9fe 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ X-editable changelog Version 1.4.5 wip ---------------------------- +[enh #255] remove xxxView options from first level config of datetimepicker (vitalets) [enh] if `display` defined as function call it on init (vitalets) [enh #218] sourceCache now disables cache totally (vitalets) [bug #156] solve conflict of bootstrap datepicker and jQuery UI datepicker (vitalets) diff --git a/src/inputs/datetime/datetime.js b/src/inputs/datetime/datetime.js index 6c68e34..808dadc 100644 --- a/src/inputs/datetime/datetime.js +++ b/src/inputs/datetime/datetime.js @@ -62,11 +62,6 @@ $(function(){ //store parsed formats this.parsedFormat = this.dpg.parseFormat(this.options.format, this.options.formatType); this.parsedViewFormat = this.dpg.parseFormat(this.options.viewformat, this.options.formatType); - - // - this.options.datetimepicker.startView = this.options.startView; - this.options.datetimepicker.minView = this.options.minView; - this.options.datetimepicker.maxView = this.options.maxView; }, render: function () {