Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
- Introduced export error fixed
  • Loading branch information
eduardomota committed Mar 6, 2019
1 parent 9b3387d commit 6eaac72
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion app/html/mainPanel.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<body>
<div id="appWhoisDigger">
<section class="hero is-fullheight" >
<section class="hero is-fullheight">
<div class="hero-head">
<div id="navbar-top">
<!-- navbar controls, minimize, close, logo, extended nav (navigation/navbar-top.html)-->
Expand Down
26 changes: 13 additions & 13 deletions app/html/tabs/to/toEntry.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ <h4 class="title is-4 has-text-centered">Wordlist Tools</h4>
<h5>Select your preferred process options and start processing your wordlist</h5>
<hr>
<table id="toTable" class="table is-striped is-hoverable is-fullwidth">
<tr>
<th>File manipulation</th>
<td id="#" class="is-expanded">
<label>
<input type="checkbox" value="1">
<div class="button is-small">Concatenate</div>
</label>
<label>
<input type="checkbox" value="1">
<div class="button is-small">Split</div>
</label>
</td>
</tr>
<tr>
<th>Add to wordlist</th>
<td id="#" class="is-expanded">
Expand Down Expand Up @@ -103,19 +116,6 @@ <h5>Select your preferred process options and start processing your wordlist</h5
</label>
</td>
</tr>
<tr>
<th>Further file manipulation</th>
<td id="#" class="is-expanded">
<label>
<input type="checkbox" value="1">
<div class="button is-small">Concatenate</div>
</label>
<label>
<input type="checkbox" value="1">
<div class="button is-small">Split</div>
</label>
</td>
</tr>
</table>
<a id="#" class="button is-medium is-success">
<span class="icon is-small">
Expand Down
2 changes: 1 addition & 1 deletion app/js/renderer/bulkwhois/auxiliary.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function tableReset(dLength = 0, tLength = 0) {

// Get export options from the form
function getExportOptions() {
var options = resetObject();
var options = {};
options = {
'filetype': $('#bweSelectFiletype').val(),
'domains': $('#bweSelectDomains').val(),
Expand Down
7 changes: 3 additions & 4 deletions app/js/renderer/bulkwhois/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ var {

ipcRenderer.on('bulkwhois:result.receive', function(event, rcvResults) {
ipcRenderer.send('app:debug', "Results are ready for export {0}".format(rcvResults));
/*

results = rcvResults;
console.log("%o", results);
*/
//console.log("%o", results);
});

ipcRenderer.on('bulkwhois:export.cancel', function(event) {
ipcRenderer.on('bulkwhois:export.cancel', function() {
$('#bwExportLoading').addClass('is-hidden');
$('#bwEntry').removeClass('is-hidden');
});
Expand Down
2 changes: 1 addition & 1 deletion app/js/renderer/singlewhois.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ipcRenderer.on('singlewhois:results', function(event, domainResults) {
$('#swMessageError').removeClass('is-hidden');
break;
case 'unavailable':
console.log(domainResultsJSON);
//console.log(domainResultsJSON);
$('#swMessageUnavailable').removeClass('is-hidden');
$('#swMessageWhoisResults').text(domainResults);

Expand Down

0 comments on commit 6eaac72

Please sign in to comment.