Browse Source

several small fixes

tags/v1.0.0
Remco 9 years ago
parent
commit
2989c86c96
4 changed files with 5 additions and 7 deletions
  1. +2
    -2
      transfersh-server/static/index.html
  2. +1
    -1
      transfersh-server/static/scripts/main.js
  3. +2
    -2
      transfersh-web/index.html
  4. +0
    -2
      transfersh-web/scripts/main.js

+ 2
- 2
transfersh-server/static/index.html View File

@@ -15,8 +15,8 @@
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="styles/main.css">

<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Source+Code+Pro:300" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300" rel="stylesheet" type="text/css">

<script src="scripts/vendor/modernizr.js"></script>
</head>


+ 1
- 1
transfersh-server/static/scripts/main.js
File diff suppressed because it is too large
View File


+ 2
- 2
transfersh-web/index.html View File

@@ -15,8 +15,8 @@
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="styles/main.css">

<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:300' rel='stylesheet' type='text/css'>

<!-- build:js scripts/vendor/modernizr.js -->
<script src="bower_components/modernizr/modernizr.js"></script>


+ 0
- 2
transfersh-web/scripts/main.js View File

@@ -57,8 +57,6 @@ $(document).ready(function () {
$(li).html('<span>Error (' + xhr.status + ') during upload of file ' + file.name + '</span>');
}

files.push(xhr.responseText.replace("https://transfer.sh/", ""));

files.push(URI(xhr.responseText).absoluteTo(location.href).toString());

$(".download-zip").attr("href", URI("(" + files.join(",") + ").zip").absoluteTo(location.href).toString());


Loading…
Cancel
Save