fixed disapearing publish header
This commit is contained in:
parent
ea4669b290
commit
7b85197c40
2 changed files with 6 additions and 8 deletions
|
@ -23,9 +23,7 @@
|
|||
var adder = 1;
|
||||
function addOne(){
|
||||
var bars = '<p>|';
|
||||
for (var i = 0; i < x; i++){
|
||||
bars += ' | ';
|
||||
}
|
||||
for (var i = 0; i < x; i++){ bars += ' | '; }
|
||||
bars += '</p>';
|
||||
element.innerHTML = bars;
|
||||
if (x === size){
|
||||
|
@ -112,7 +110,7 @@
|
|||
event.file.meta.license = license;
|
||||
event.file.meta.nsfw = nsfw;
|
||||
// re-set the html in the publish area
|
||||
document.getElementById('publish').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
||||
document.getElementById('publish-active-area').innerHTML = '<div id="publish-status"></div><div id="progress-bar"></div>';
|
||||
// start a progress animation
|
||||
createProgressBar(document.getElementById('progress-bar'), 12);
|
||||
});
|
||||
|
@ -126,7 +124,7 @@
|
|||
updatePublishStatus(msg);
|
||||
});
|
||||
socket.on('publish-failure', function(msg){
|
||||
document.getElementById('publish').innerHTML = '<p>' + msg + '</p><p> --(✖╭╮✖)→ </p>';
|
||||
document.getElementById('publish-active-area').innerHTML = '<p>' + msg + '</p><p> --(✖╭╮✖)→ </p>';
|
||||
});
|
||||
socket.on('publish-complete', function(msg){
|
||||
var publishResults = '<p>Your publish is complete!</p>';
|
||||
|
@ -136,6 +134,6 @@
|
|||
publishResults += '<p>Here is a direct link to your asset: <a href="https://spee.ch/' + msg.name + '/' + msg.result.claim_id + '">spee.ch/' + msg.name + '/' + msg.result.claim_id + '</a></p>';
|
||||
publishResults += '<p><i>NOTE: the transaction still needs to be mined by the network before you can access it! This may take a few minutes. To to view the transaction on the blockchain explorer click the Transaction ID link above.</i></p>';
|
||||
publishResults += '<p><a href="/">Reload to publish another asset</a></p>';
|
||||
document.getElementById('publish').innerHTML = publishResults;
|
||||
document.getElementById('publish-active-area').innerHTML = publishResults;
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<h2>Documentation</h2>
|
||||
<h3>Site Navigation</h3>
|
||||
<ul>
|
||||
<li><strong><a href="/">spee.ch</a></strong>.
|
||||
<li><strong><a href="/">spee.ch</a></strong>
|
||||
<ul>
|
||||
<li>To publish a file, navigate to the homepage.</li>
|
||||
</ul>
|
||||
|
@ -28,7 +28,7 @@
|
|||
</ul>
|
||||
<h3>API</h3>
|
||||
<p>Note: these are being used for testing durring spee.ch development and may not be maintained</p>
|
||||
<ul>
|
||||
<ul>
|
||||
<li>A GET request to <strong>spee.ch/claim_list/<the name of the claim></strong>
|
||||
<ul>
|
||||
<li>Will return the claim_list for the claim in json format. </li>
|
||||
|
|
Loading…
Reference in a new issue