update
This commit is contained in:
parent
848255a822
commit
f2a1e1142c
@ -19,7 +19,7 @@ class HomeController < ApplicationController
|
|||||||
def delete_file
|
def delete_file
|
||||||
file_name = params[:file_name]
|
file_name = params[:file_name]
|
||||||
puts "rm #{file_name} -rf"
|
puts "rm #{file_name} -rf"
|
||||||
`rm #{file_name} -rf`
|
#`rm #{file_name} -rf`
|
||||||
redirect_to '/home/index'
|
redirect_to '/home/index'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -135,7 +135,6 @@
|
|||||||
<p class="text-muted font-13 m-b-30"> <code> Current directory : <span id="select_dir"><%=@current_dir%></span></code></p>
|
<p class="text-muted font-13 m-b-30"> <code> Current directory : <span id="select_dir"><%=@current_dir%></span></code></p>
|
||||||
<p style="text-align:right;" >
|
<p style="text-align:right;" >
|
||||||
<a class="btn btn-default" href="#popup_mkdir"><i class="fa fa-plus"></i> Make Directory</a>
|
<a class="btn btn-default" href="#popup_mkdir"><i class="fa fa-plus"></i> Make Directory</a>
|
||||||
<a class="btn btn-default" href="#loading"><i class="fa fa-plus"></i> Loading Test</a>
|
|
||||||
</p>
|
</p>
|
||||||
<table id="datatable" class="table table-striped table-bordered jambo_table">
|
<table id="datatable" class="table table-striped table-bordered jambo_table">
|
||||||
<thead>
|
<thead>
|
||||||
@ -225,11 +224,11 @@
|
|||||||
data: { file_name: $("#delete_name").val() },
|
data: { file_name: $("#delete_name").val() },
|
||||||
success : function(result){
|
success : function(result){
|
||||||
change_directory($("#select_dir").text());
|
change_directory($("#select_dir").text());
|
||||||
|
$(location).attr('href', "#");
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
$(".contextmenu").hide();
|
$(".contextmenu").hide();
|
||||||
$(document).unbind('mousedown');
|
$(document).unbind('mousedown');
|
||||||
$(location).attr('href', "#");
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<!-- file manager functions -->
|
<!-- file manager functions -->
|
||||||
|
Loading…
Reference in New Issue
Block a user