Network Slice Templates
[osm/LW-UI.git] / static / src / packagehandler / onboard_package.js
index d18be5b..194bcdc 100644 (file)
    limitations under the License.
 */
 
-var dropZone = document.getElementById('drop-zone');
-dropZone.ondrop = function (e) {
-    e.preventDefault();
-    this.className = 'upload-drop-zone';
-    create(e.dataTransfer.files, true);
-};
-
-dropZone.ondragover = function () {
-    this.className = 'upload-drop-zone drop';
-    return false;
-};
-
-dropZone.ondragleave = function () {
-    this.className = 'upload-drop-zone';
-    return false;
-};
-
-
 function create(fs, dropzone) {
     var id = $('.nav-tabs .active').attr('id');
     if (dropzone) id = 'file_li';