1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 10:04:01 +02:00

remove some debug outputs

This commit is contained in:
Marco Dickert
2017-07-26 16:16:32 +02:00
parent c8e3d31e9b
commit b4b9550d71
4 changed files with 0 additions and 9 deletions

View File

@@ -2056,14 +2056,12 @@ function IFM( params ) {
$(document).on( 'dragover', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
$('#filedropoverlay').css( 'display', 'block' );
});
$( '#filedropoverlay' )
.on( 'drop', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
var files = e.originalEvent.dataTransfer.files;
for( var i = 0; i < files.length; i++ ) {
self.uploadFile( files[i] );
@@ -3078,7 +3076,6 @@ class IFMArchive {
if( ! file_exists( $file ) )
return false;
$tar = new PharData( $file );
file_put_contents( "debug.txt", "Exist: asparagus?" . ( file_exists( "asparagus") ? "yes" : "no" ) );
try {
$tar->extractTo( $destination, null, true );
return true;

View File

@@ -2056,14 +2056,12 @@ function IFM( params ) {
$(document).on( 'dragover', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
$('#filedropoverlay').css( 'display', 'block' );
});
$( '#filedropoverlay' )
.on( 'drop', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
var files = e.originalEvent.dataTransfer.files;
for( var i = 0; i < files.length; i++ ) {
self.uploadFile( files[i] );
@@ -3078,7 +3076,6 @@ class IFMArchive {
if( ! file_exists( $file ) )
return false;
$tar = new PharData( $file );
file_put_contents( "debug.txt", "Exist: asparagus?" . ( file_exists( "asparagus") ? "yes" : "no" ) );
try {
$tar->extractTo( $destination, null, true );
return true;

View File

@@ -1317,14 +1317,12 @@ function IFM( params ) {
$(document).on( 'dragover', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
$('#filedropoverlay').css( 'display', 'block' );
});
$( '#filedropoverlay' )
.on( 'drop', function( e ) {
e.preventDefault();
e.stopPropagation();
console.log( e );
var files = e.originalEvent.dataTransfer.files;
for( var i = 0; i < files.length; i++ ) {
self.uploadFile( files[i] );

View File

@@ -78,7 +78,6 @@ class IFMArchive {
if( ! file_exists( $file ) )
return false;
$tar = new PharData( $file );
file_put_contents( "debug.txt", "Exist: asparagus?" . ( file_exists( "asparagus") ? "yes" : "no" ) );
try {
$tar->extractTo( $destination, null, true );
return true;