Skip to content

Commit

Permalink
openapp.html -> index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kakysha committed Jan 25, 2018
1 parent 5f6d5e5 commit d55f0cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions email_template.html
Expand Up @@ -88,7 +88,7 @@
<div class="content" style="box-sizing: border-box; display: block; Margin: 0 auto; max-width: 580px; padding: 10px;">

<!-- START CENTERED WHITE CONTAINER -->
<span class="preheader" style="color: transparent; display: none; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;">Here is your link to receive {{amount}} {{asset}} {{usd_amount_str}}: https://byteball.org/openapp.html#textcoin?{{mnemonic}}</span>
<span class="preheader" style="color: transparent; display: none; height: 0; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; mso-hide: all; visibility: hidden; width: 0;">Here is your link to receive {{amount}} {{asset}} {{usd_amount_str}}: https://byteball.org/#textcoin?{{mnemonic}}</span>
<table class="main" style="border-collapse: separate; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%; background: #ffffff; border-radius: 3px;">

<!-- START MAIN CONTENT AREA -->
Expand All @@ -100,7 +100,7 @@
<p style="font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;">Hello,</p>
<p style="font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-bottom: 15px;">Here is your link to receive <b>{{amount}} {{asset}}</b> {{usd_amount_str}}:</p>
<p style="font-family: sans-serif; font-size: 14px; font-weight: normal; margin: 0; margin-left: 0px; Margin-bottom: 15px;">
<a href="https://byteball.org/openapp.html#textcoin?{{mnemonic}}">https://byteball.org/openapp.html#textcoin?{{mnemonic}}</a>
<a href="https://byteball.org/#textcoin?{{mnemonic}}">https://byteball.org/#textcoin?{{mnemonic}}</a>
</p>
<p>You can spend this money with anybody who has an email address.</p>
</td>
Expand Down
2 changes: 1 addition & 1 deletion wallet.js
Expand Up @@ -1563,7 +1563,7 @@ function replaceInTextcoinTemplate(params, handleText){
});
template = template.replace(/\{\{\w*\}\}/g, '');

var text = "Here is your link to receive " + params.amount + " " + params.asset + params.usd_amount_str + ": https://byteball.org/openapp.html#textcoin?" + params.mnemonic;
var text = "Here is your link to receive " + params.amount + " " + params.asset + params.usd_amount_str + ": https://byteball.org/#textcoin?" + params.mnemonic;
handleText(template, text);
});
}
Expand Down

0 comments on commit d55f0cf

Please sign in to comment.