https://github.com/giraysam/viiny-dragger
viiny-dragger is a drag and drop plugin for javascript.
https://github.com/giraysam/viiny-dragger
drag-and-drop javascript
Last synced: about 1 year ago
JSON representation
viiny-dragger is a drag and drop plugin for javascript.
- Host: GitHub
- URL: https://github.com/giraysam/viiny-dragger
- Owner: giraysam
- License: mit
- Created: 2015-12-19T20:03:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T21:08:09.000Z (over 10 years ago)
- Last Synced: 2024-11-04T15:05:52.302Z (over 1 year ago)
- Topics: drag-and-drop, javascript
- Language: JavaScript
- Homepage: http://giraysam.github.io/viiny-dragger/
- Size: 45.9 KB
- Stars: 27
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## ViinyDragger is a viiny plugin
#### How to install?
Npm:
```sh
npm install viiny-dragger
```
Bower:
```sh
bower install viiny-dragger
```
### Demo and Examples
http://giraysam.github.io/viiny-dragger/
### Pull Requests
* [Fork] the project, clone your fork, and configure the remotes:
```sh
# Clone your fork of the repo into the current directory
git clone https://github.com//viiny-dragger.git
# Navigate to the newly cloned directory
cd viiny-dragger
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/giraysam/viiny-dragger.git
```
* If you cloned a while ago, get the latest changes from upstream:
```sh
git checkout master
git pull upstream master
```
* Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
```sh
git checkout -b
```
* Commit your changes in logical chunks. Please adhere to these [git commit message guidelines] or your code is unlikely be merged into the main project.
Use Git's [interactive rebase] feature to tidy up your commits before making them public.
* Locally merge (or rebase) the upstream master branch into your topic branch:
```sh
git pull [--rebase] upstream master
```
* Push your topic branch up to your fork:
```sh
git push origin
```
* [Open a Pull Request] with a clear title and description against the master branch.
[Fork]:
[git commit message guidelines]:
[interactive rebase]:
[Open a Pull Request]: