Skip to content

Commit e912d00

Browse files
committed
v1.2.1
1 parent 43fd373 commit e912d00

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,11 +583,11 @@ Link to the active instance.
583583

584584
```html
585585
<!-- CDNJS :: Sortable (https://cdnjs.com/) -->
586-
<script src="//cdnjs.cloudflare.com/ajax/libs/Sortable/1.2.0/Sortable.min.js"></script>
586+
<script src="//cdnjs.cloudflare.com/ajax/libs/Sortable/1.2.1/Sortable.min.js"></script>
587587

588588

589589
<!-- jsDelivr :: Sortable (http://www.jsdelivr.com/) -->
590-
<script src="//cdn.jsdelivr.net/sortable/1.2.0/Sortable.min.js"></script>
590+
<script src="//cdn.jsdelivr.net/sortable/1.2.1/Sortable.min.js"></script>
591591

592592

593593
<!-- jsDelivr :: Sortable :: Latest (http://www.jsdelivr.com/) -->

Sortable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@
11271127
};
11281128

11291129

1130-
Sortable.version = '1.2.0';
1130+
Sortable.version = '1.2.1';
11311131

11321132

11331133
/**

Sortable.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"knockout-sortable.js",
77
"react-sortable-mixin.js"
88
],
9-
"version": "1.2.0",
9+
"version": "1.2.1",
1010
"homepage": "http://rubaxa.github.io/Sortable/",
1111
"authors": [
1212
"RubaXa <ibnRubaXa@gmail.com>"

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Sortable",
33
"main": "Sortable.js",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"homepage": "http://rubaxa.github.io/Sortable/",
66
"repo": "RubaXa/Sortable",
77
"authors": [

react-sortable-mixin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@
137137
componentWillReceiveProps: function (nextProps) {
138138
var newState = {},
139139
modelName = _getModelName(this),
140-
items;
140+
items = nextProps[modelName];
141141

142-
if (items = nextProps[modelName]) {
142+
if (items) {
143143
newState[modelName] = items;
144144
this.setState(newState);
145145
}

0 commit comments

Comments
 (0)