Skip to content

Commit

Permalink
v1.3.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
RubaXa committed Sep 10, 2015
1 parent ac5e4a7 commit 42fa792
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,11 @@ Link to the active instance.

```html
<!-- CDNJS :: Sortable (https://cdnjs.com/) -->
<script src="//cdnjs.cloudflare.com/ajax/libs/Sortable/1.2.2/Sortable.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Sortable/1.3.0-rc1/Sortable.min.js"></script>


<!-- jsDelivr :: Sortable (http://www.jsdelivr.com/) -->
<script src="//cdn.jsdelivr.net/sortable/1.2.2/Sortable.min.js"></script>
<script src="//cdn.jsdelivr.net/sortable/1.3.0-rc1/Sortable.min.js"></script>


<!-- jsDelivr :: Sortable :: Latest (http://www.jsdelivr.com/) -->
Expand Down
5 changes: 3 additions & 2 deletions Sortable.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,8 @@
else if (floating) {
var elTop = dragEl.offsetTop,
tgTop = target.offsetTop;
if (elTop===tgTop) {

if (elTop === tgTop) {
after = (target.previousElementSibling === dragEl) && !isWide || halfway && isWide;
} else {
after = tgTop > elTop;
Expand Down Expand Up @@ -1232,6 +1233,6 @@


// Export
Sortable.version = '1.2.2';
Sortable.version = '1.3.0-rc1';
return Sortable;
});
4 changes: 2 additions & 2 deletions Sortable.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Sortable",
"main": "Sortable.js",
"version": "1.2.2",
"version": "1.3.0-rc1",
"homepage": "http://rubaxa.github.io/Sortable/",
"repo": "RubaXa/Sortable",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sortablejs",
"exportName": "Sortable",
"version": "1.2.2",
"version": "1.3.0-rc1",
"devDependencies": {
"grunt": "*",
"grunt-version": "*",
Expand Down

0 comments on commit 42fa792

Please sign in to comment.