|
|
|
@ -9,10 +9,15 @@
@@ -9,10 +9,15 @@
|
|
|
|
|
|
|
|
|
|
function stateChangeHandler() { |
|
|
|
|
if (this.readyState == this.DONE) { |
|
|
|
|
if (this.status == 200) |
|
|
|
|
if (this.status == 200) { |
|
|
|
|
window.parent.closeWindows(); |
|
|
|
|
else |
|
|
|
|
alert("Upload Failed!"); |
|
|
|
|
} else { |
|
|
|
|
if (this.responseText != "") { |
|
|
|
|
alert(this.responseText); |
|
|
|
|
} else { |
|
|
|
|
alert("_(Upload Failed!)"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -44,7 +49,9 @@ window.addEvent('load', function() {
@@ -44,7 +49,9 @@ window.addEvent('load', function() {
|
|
|
|
|
// is XHR2 available? |
|
|
|
|
var xhr = new XMLHttpRequest(); |
|
|
|
|
if (xhr.upload) |
|
|
|
|
$('submitbutton').addClass("invisible"); |
|
|
|
|
$('submitbutton').addClass("invisible"); |
|
|
|
|
else |
|
|
|
|
$('upload_frame').addEvent('load', function(e) { window.parent.closeWindows(); }); |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
</head> |
|
|
|
@ -55,7 +62,7 @@ window.addEvent('load', function() {
@@ -55,7 +62,7 @@ window.addEvent('load', function() {
|
|
|
|
|
<input type="file" id="fileselect" name="fileselect[]" multiple="multiple" /><br/> |
|
|
|
|
<div id="submitbutton"> |
|
|
|
|
<button type="submit">_(Upload Torrents)</button> |
|
|
|
|
</div |
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
</body> |
|
|
|
|
</html> |
|
|
|
|