mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Minor: remove debug output
This commit is contained in:
parent
319f917071
commit
c7c8eacb0c
1 changed files with 0 additions and 1 deletions
|
@ -368,7 +368,6 @@ $('.wg-client-dl').click(function(){
|
|||
req.open('get', url, true);
|
||||
req.responseType = 'blob';
|
||||
req.setRequestHeader('Content-type', 'text/plain; charset=UTF-8');
|
||||
console.log(req);
|
||||
req.onreadystatechange = function (event) {
|
||||
if(req.readyState == 4 && req.status == 200) {
|
||||
var blob = req.response;
|
||||
|
|
Loading…
Reference in a new issue