Skip to content

Commit c0988ee

Browse files
committed
Initial commit
0 parents  commit c0988ee

8 files changed

+1062
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
packages
2+
.project
3+
pubspec.lock

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Changelog
2+
================
3+
4+
## Version 0.0.1 (2013-05-??) ##
5+
* Initial Version.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Marco Jakob ([email protected])
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
HTML5 Drag and Drop for Dart
2+
================
3+
4+
Library to streamline **Native HTML5 Drag and Drop** in Dart.
5+
6+
## Features ##
7+
* Sortable
8+
* Same functionality and API for IE9+, Firefox, Chrome, ?Safari? (not tested yet),
9+
?Opera? (not tested yet)
10+
11+
## Demo ##
12+
TODO: demo page...
13+
Examples are available in the `example` directory.
14+
15+
## Usage ##
16+
17+
### 1. Add Dependency ###
18+
Add the folowing to your **pubspec.yaml** and run **pub install**
19+
```yaml
20+
dependencies:
21+
html5_drag_and_drop: any
22+
```
23+
24+
### 2. ... ###
25+
```dart
26+
import 'package:html5_drag_and_drop/drag_and_drop.dart';
27+
28+
// ...
29+
```
30+
31+
## License ##
32+
The MIT License (MIT)
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+

0 commit comments

Comments
 (0)