Merge pull request #1716 from matiaspando/iss1700

Replaced a call to a function for a variable
This commit is contained in:
Matias Alejo Garcia 2014-11-04 13:08:47 -03:00
commit e59fc26f0d
4 changed files with 11 additions and 11 deletions

View file

@ -14,11 +14,11 @@
<small>{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}}</small>
</h2>
<div class="text-center">
<qrcode size="250" data="{{$root.wallet.getSecret()}}"></qrcode>
<qrcode size="250" data="{{secret}}"></qrcode>
</div>
<div class="secret m20t">
{{$root.wallet.getSecret()}}
<span class="btn-copy" clip-copy="$root.wallet.getSecret()"></span>
{{secret}}
<span class="btn-copy" clip-copy="secret"></span>
</div>
</div>
</div>