Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
cruikshj committed Sep 9, 2015
1 parent 9baaa57 commit 1fcab89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/knockout-select2.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
if (ko.isObservable(allBindings.value)) {
allBindings.value.subscribe(function (value) {
if (ignoreChange) return;
triggerChangeQuietly(element, this.target);
triggerChangeQuietly(element, this._target || this.target);
});
} else if (ko.isObservable(allBindings.selectedOptions)) {
allBindings.selectedOptions.subscribe(function (value) {
if (ignoreChange) return;
triggerChangeQuietly(element, this.target);
triggerChangeQuietly(element, this._target || this.target);
});
}

Expand Down
2 changes: 1 addition & 1 deletion dist/knockout-select2.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>knockout-select2</id>
<version>1.0.4</version>
<version>1.0.5</version>
<title>knockout-select2</title>
<authors>Shaftware</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down

0 comments on commit 1fcab89

Please sign in to comment.