Skip to content

Commit

Permalink
Sync with Kendo UI Professional
Browse files Browse the repository at this point in the history
  • Loading branch information
Kendo Bot committed Oct 17, 2018
1 parent c0029f5 commit a930d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions src/kendo.combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ var __meta__ = { // jshint ignore:line
shouldTrigger = that._value(dataItem) !== List.unifyType(that.value(), typeof that._value(dataItem));

if(!shouldTrigger){
that.input.val(that._accessor());
that.input.val(that._text(dataItem));
}
}

Expand Down Expand Up @@ -992,10 +992,6 @@ var __meta__ = { // jshint ignore:line

if(dataItem){
shouldTrigger = that._value(dataItem) !== List.unifyType(that.value(), typeof that._value(dataItem));

if(!shouldTrigger){
that.input.val(that._accessor());
}
}

if (shouldTrigger && that.trigger("select", { dataItem: dataItem, item: current })) {
Expand Down
2 changes: 1 addition & 1 deletion src/kendo.multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,7 @@ var __meta__ = { // jshint ignore:line
// trigger the DOM change event so any subscriber gets notified
that.element.trigger(CHANGE);
}
that.popup.position();
that._toggleCloseVisibility();
},

Expand Down Expand Up @@ -1356,7 +1357,6 @@ var __meta__ = { // jshint ignore:line
return;
}

that.popup.position();
that.persistTagList = false;
return selectIndices(indices);
},
Expand Down

0 comments on commit a930d15

Please sign in to comment.