Skip to content

Commit

Permalink
v1.9 - Added ExtJS 6.6 and 6.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
gportela85 committed Dec 28, 2018
1 parent 0ad7eaf commit b1f6dda
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Binary file modified DateTimeField.aux
Binary file not shown.
10 changes: 6 additions & 4 deletions package.json
@@ -1,11 +1,11 @@
{
"name": "DateTimeField",
"type": "code",
"creator": "Guilherme Portela",
"creator": "Guilherme Lopes",
"summary": "DateTime Field for ExtJS 5.x - ExtJS 6.x",
"detailedDescription": "Extension of Date Field to add a Time Picker with Sliders to set Hour and Minute",
"version": "1.8.2",
"compatVersion": "1.8.2",
"version": "1.9",
"compatVersion": "1.9",
"format": "1",
"local": true,
"requires": [],
Expand All @@ -15,7 +15,9 @@
"ext51",
"ext60",
"ext62",
"ext65"
"ext65",
"ext66",
"ext67"
],
"classes": [{
"definition": "DateTimeField.Definition.js",
Expand Down
2 changes: 1 addition & 1 deletion src/DateTimeField.js
Expand Up @@ -71,7 +71,7 @@ Ext.define('Ext.ux.DateTimeField', {
time;

if (value === null || value.length < 1) { // if it's blank and textfield didn't flag it then it's valid
return errors;
return errors;
}

svalue = value;
Expand Down
2 changes: 1 addition & 1 deletion src/DateTimePicker.js
Expand Up @@ -189,7 +189,7 @@ Ext.define('Ext.ux.DateTimePicker', {
return null;
},

changeTimeValue: function(slider, e, eOpts) {
changeTimeValue: function(slider) {
var me = this,
label = me.timePicker.down('label'),
minutePrefix = me.minuteSlider.getValue() < 10 ? '0' : '',
Expand Down

0 comments on commit b1f6dda

Please sign in to comment.