Skip to content

Commit

Permalink
update version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rniemeyer committed Oct 4, 2014
1 parent 44a8859 commit 0271ee4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-sortable",
"version": "0.9.0",
"version": "0.9.1",
"main": "./build/knockout-sortable.min.js",
"ignore": [
"examples",
Expand Down
4 changes: 2 additions & 2 deletions build/knockout-sortable.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// knockout-sortable 0.9.0 | (c) 2014 Ryan Niemeyer | http://www.opensource.org/licenses/mit-license
// knockout-sortable 0.9.1 | (c) 2014 Ryan Niemeyer | http://www.opensource.org/licenses/mit-license
;(function(factory) {
if (typeof define === "function" && define.amd) {
// AMD anonymous module
Expand Down Expand Up @@ -309,7 +309,7 @@
connectClass = value.connectClass || ko.bindingHandlers.draggable.connectClass,
isEnabled = value.isEnabled !== undefined ? value.isEnabled : ko.bindingHandlers.draggable.isEnabled;

value = value.data || value;
value = "data" in value ? value.data : value;

//set meta-data
dataSet(element, DRAGKEY, value);
Expand Down
4 changes: 2 additions & 2 deletions build/knockout-sortable.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.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-sortable",
"version": "0.9.0",
"version": "0.9.1",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "0.x.x",
Expand Down

0 comments on commit 0271ee4

Please sign in to comment.