Skip to content

Commit

Permalink
fixed css issues
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Jul 2, 2015
1 parent a63249a commit ff8ece0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions bundle.js
Expand Up @@ -5,7 +5,6 @@ var resampler = require('./lib/resampler.js');
var dragDrop = require('drag-drop');

window.addEventListener('load', function(){

// dom elements
var fSelectOption = document.getElementById('freqSelect');
var messageBox = document.getElementById('message');
Expand Down Expand Up @@ -66,7 +65,7 @@ window.addEventListener('load', function(){
dragDrop('#dropzone');
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.style.display = "none";
a.href = fileEvent;
var fileExt = file.name.split('.').pop();
var fileName = file.name.substr(0, file.name.length-fileExt.length-1);
Expand Down
5 changes: 2 additions & 3 deletions index.js
@@ -1,10 +1,9 @@

"use strict";

var resampler = require('./lib/resampler.js');
var dragDrop = require('drag-drop');

window.addEventListener('load', function(){
"use strict";
// dom elements
var fSelectOption = document.getElementById('freqSelect');
var messageBox = document.getElementById('message');
Expand Down Expand Up @@ -65,7 +64,7 @@ window.addEventListener('load', function(){
dragDrop('#dropzone');
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.style.display = "none";
a.href = fileEvent;
var fileExt = file.name.split('.').pop();
var fileName = file.name.substr(0, file.name.length-fileExt.length-1);
Expand Down

0 comments on commit ff8ece0

Please sign in to comment.