-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:RubaXa/Sortable
- Loading branch information
Showing
5 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,7 +202,7 @@ Sortable.create(list, { | |
#### `ghostClass` option | ||
Class name for the drop placeholder. | ||
|
||
Demo: http://jsbin.com/boqugumiqi/1/edit?css,js,output | ||
Demo: http://jsbin.com/hunifu/1/edit?css,js,output | ||
|
||
```css | ||
.ghost { | ||
|
@@ -430,7 +430,7 @@ Link to the active instance. | |
|
||
|
||
## MIT LICENSE | ||
Copyright 2013-2014 Lebedev Konstantin <[email protected]> | ||
Copyright 2013-2015 Lebedev Konstantin <[email protected]> | ||
http://rubaxa.github.io/Sortable/ | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ Package.describe({ | |
Package.onUse(function (api) { | ||
api.versionsFrom(['[email protected]', '[email protected]']); | ||
api.use('templating', 'client'); | ||
api.use('dburles:[email protected].5'); // to watch collections getting created | ||
api.use('dburles:[email protected].6'); // to watch collections getting created | ||
api.export('Sortable'); | ||
api.addFiles([ | ||
'Sortable.js', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,5 +25,12 @@ | |
"drag" | ||
], | ||
"author": "Konstantin Lebedev <[email protected]>", | ||
"license": "MIT" | ||
"license": "MIT", | ||
"spm": { | ||
"main": "Sortable.js", | ||
"ignore": [ | ||
"meteor", | ||
"st" | ||
] | ||
} | ||
} |