diff --git a/public/vendor/angular-native-dragdrop/.bower.json b/public/vendor/angular-native-dragdrop/.bower.json deleted file mode 100644 index 6cef5b66f76..00000000000 --- a/public/vendor/angular-native-dragdrop/.bower.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "angular-native-dragdrop", - "version": "1.1.1", - "homepage": "http://angular-dragdrop.github.io/angular-dragdrop", - "authors": [ - "ganarajpr" - ], - "description": "Angular HTML5 Drag and Drop directive written in pure with no dependency on JQuery.", - "main": "draganddrop.js", - "keywords": [ - "angular", - "drag", - "drop", - "html5" - ], - "dependencies": { - "angular": "^1.3" - }, - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "_release": "1.1.1", - "_resolution": { - "type": "version", - "tag": "v1.1.1", - "commit": "4ff89cb0aa61070508e935729fb816fd46a58f60" - }, - "_source": "git://github.com/angular-dragdrop/angular-dragdrop.git", - "_target": "~1.1.1", - "_originalSource": "angular-native-dragdrop" -} \ No newline at end of file diff --git a/public/vendor/angular-native-dragdrop/Gulpfile.js b/public/vendor/angular-native-dragdrop/Gulpfile.js deleted file mode 100644 index 0aa3bdfff72..00000000000 --- a/public/vendor/angular-native-dragdrop/Gulpfile.js +++ /dev/null @@ -1,15 +0,0 @@ -/* jshint -W097 */ -'use strict'; - -/* global require */ -var jshint = require('gulp-jshint'); -var stylish = require('jshint-stylish'); -var gulp = require('gulp'); - -gulp.task('lint', function() { - return gulp.src('./draganddrop.js') - .pipe(jshint()) - .pipe(jshint.reporter(stylish)); -}); - -gulp.task('default', ['lint']); diff --git a/public/vendor/angular-native-dragdrop/LICENSE b/public/vendor/angular-native-dragdrop/LICENSE deleted file mode 100644 index d239cb9e0d3..00000000000 --- a/public/vendor/angular-native-dragdrop/LICENSE +++ /dev/null @@ -1,10 +0,0 @@ - -The MIT License - -Copyright (c) 2015 Ganaraj P R, [Nebithi](http://www.nebithi.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/public/vendor/angular-native-dragdrop/bower.json b/public/vendor/angular-native-dragdrop/bower.json deleted file mode 100644 index 8ffcb8869a7..00000000000 --- a/public/vendor/angular-native-dragdrop/bower.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "angular-native-dragdrop", - "version": "1.1.1", - "homepage": "http://angular-dragdrop.github.io/angular-dragdrop", - "authors": [ - "ganarajpr" - ], - "description": "Angular HTML5 Drag and Drop directive written in pure with no dependency on JQuery.", - "main": "draganddrop.js", - "keywords": [ - "angular", - "drag", - "drop", - "html5" - ], - "dependencies": { - "angular": "^1.3" - }, - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -} diff --git a/public/vendor/angular-native-dragdrop/demo/css/styles.css b/public/vendor/angular-native-dragdrop/demo/css/styles.css deleted file mode 100644 index 4dd18383697..00000000000 --- a/public/vendor/angular-native-dragdrop/demo/css/styles.css +++ /dev/null @@ -1,29 +0,0 @@ -body { - background-color: #f8f7f8; -} - -.heading { - border-bottom: 1px solid #b7b7b7; - padding-bottom: 10px; - margin-bottom: 10px; -} - -.topRow { - margin-bottom: 30px; -} - -.on-drag-enter { - background-color : #677ba6; -} - -.on-drag-enter-custom { - background-color : #d78cc7; -} - -.on-drag-hover { - background-color : #3eb352; -} - -.on-drag-hover-custom { - background-color : #d7a931; -} \ No newline at end of file diff --git a/public/vendor/angular-native-dragdrop/demo/index.html b/public/vendor/angular-native-dragdrop/demo/index.html deleted file mode 100644 index 9693e8f8c95..00000000000 --- a/public/vendor/angular-native-dragdrop/demo/index.html +++ /dev/null @@ -1,129 +0,0 @@ - - - -
- -Left column of beasts is not draggable and accepts both beasts and priests
- -Each terrorist list item accepts a new terrorist. Shows inserting into a particular - position in an array.
- -Angular-DragDrop is a AngularJS HTML5 Drag and Drop directive written in pure with no dependency on JQuery.
- - -- directive in module ngDragDrop -
- -The ui-draggable
attribute tells Angular that the element is draggable. ui-draggable
- takes an expression as the attribute value. The expression should evaluate to either true
or false
.
- You can toggle the draggability of an element using this expression.
-
The drag
property is used to assign the data that needs to be passed along with the dragging
- element.
The class used to mark child elements of draggable object to be used as drag handle. Default class name is
- drag-handle
.
The on-drop-success
attribute takes a function. We can consider this to be an on-drop-success
- handler function.
- This can be useful if you need to do some post processing after the dragged element is dropped successfully on
- the drop site.
-
-
drag-end
event ( very similiar to requesting the click event in
- ng-click
)
- by passing $event
in the event handler.
-
-
- The on-drop-failure
attribute takes a function. We can consider this to be an on-drop-failure
- handler function.
- This can be useful if you need to do some post processing after the dragged element is dropped unsuccessfully on
- any drop site.
-
-
drag-end
event ( very similiar to requesting the click event in
- ng-click
)
- by passing $event
in the event handler.
-
-
-
- - -
-
Param | -Type | -Details | -
ui-draggable | -- | Expression that should be - evaluated. The given expression should resolve to true or false. - | -
drag | -- | Takes any JSON convertable $scope variable. |
-
drag-handle-class | -- | Class name used to mark child elements of draggable object to be used as drag handle. If attribute - is not present drag handle feature is not used. If attribute is present but have no value - drag-handle used as default. |
-
on-drop-success | -- | Takes any $scope function. Can also pass $event . |
-
on-drop-failure | -- | Takes any $scope function. Can also pass $event . |
-
drag-channel | -- | Takes a string that can be used as the channel name for the dragging operation.
- Default channel is "defaultchannel"
- |
-
On start of dragging an Angular Event ANGULAR_DRAG_START
is dispatched from the
- $rootScope
. The event also carries
- carries the information about the channel in which the dragging has started.
-
On end of dragging an Angular Event ANGULAR_DRAG_END
is dispatched from the $rootScope
.
- The event also carries
- carries the information about the channel in which the dragging has started.
-
When hovering a draggable element on top of a drop area an Angular Event ANGULAR_HOVER
- is dispatched from the $rootScope
.
- The event also carries the information about the channel in which the dragging has started.
-
- directive in module ngDragDrop -
- -The ui-on-drop
attribute tells Angular that the element is a drop site. ui-on-drop
- takes a function as the attribute value. The function will be called when a valid dragged element is dropped in
- that location.
- A valid dragged element is one which has the same channel as the drop location.
-
-
ui-on-drop
callback can request additional parameters. The data that is dragged is available to the
- callback as $data
and its channel as $channel
. Apart from this the drop event is exposed as $event
.
-
- The channel that the drop site accepts. The dragged element should have the same channel as this drop site for it - to be droppable at this location. It is possible to provide comma separated list of channels. - -
drag-channel
attribute is available to accept
- dragged element with any channel value — *
- Extra validation that makes sure that the drop site accepts the dragged element beyond having the same channel. If - not defined, no extra validation is made. - -
The class that will be added to the the droppable element when a dragged element ( which is droppable )
- enters the drop location. The default value for this is on-drag-enter
The class that will be added to the drop area element when hovering with an element.
- The default value for this is on-drag-hover
- -
-
Param | -Type | -Details | -
ui-on-drop | -- | Takes any $scope function. Can also pass $event , $data and $channel .
- |
-
drop-channel | -- | The channel on which the drop has to listen for drag events. - Single value, comma separated list or special value * are possible |
-
drop-validate | -- | Takes any $scope function. Can also pass $data and $channel
- |
-
drag-enter-class | -- | A class name that will be put on the droppable element when the dragged objects enters its boundaries.
- Default class name is on-drag-enter . |
- drag-hover-class | -- | A class name that will be put on the drop area when an element is dragged onto it. Default class - name is on-drag-hover . |
-
-
-