An open API service indexing awesome lists of open source software.

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.

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]: