├── LICENSE ├── README.md ├── assets ├── css │ ├── demointerface.css │ └── emptyiframe-css.css └── js │ └── dnd.js ├── client.html ├── demointerface.html ├── first-demo ├── assets │ ├── css │ │ └── demointerface.css │ └── js │ │ └── dnd.js ├── client.html └── demointerface.html └── marker-added ├── assets ├── css │ └── demointerface.css └── js │ └── dnd.js ├── client.html └── demointerface.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/demointerface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/assets/css/demointerface.css -------------------------------------------------------------------------------- /assets/css/emptyiframe-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/assets/css/emptyiframe-css.css -------------------------------------------------------------------------------- /assets/js/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/assets/js/dnd.js -------------------------------------------------------------------------------- /client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/client.html -------------------------------------------------------------------------------- /demointerface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/demointerface.html -------------------------------------------------------------------------------- /first-demo/assets/css/demointerface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/first-demo/assets/css/demointerface.css -------------------------------------------------------------------------------- /first-demo/assets/js/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/first-demo/assets/js/dnd.js -------------------------------------------------------------------------------- /first-demo/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/first-demo/client.html -------------------------------------------------------------------------------- /first-demo/demointerface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/first-demo/demointerface.html -------------------------------------------------------------------------------- /marker-added/assets/css/demointerface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/marker-added/assets/css/demointerface.css -------------------------------------------------------------------------------- /marker-added/assets/js/dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/marker-added/assets/js/dnd.js -------------------------------------------------------------------------------- /marker-added/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/marker-added/client.html -------------------------------------------------------------------------------- /marker-added/demointerface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackHive/DragDropInterface/HEAD/marker-added/demointerface.html --------------------------------------------------------------------------------