copay/index.html

935 lines
47 KiB
HTML
Raw Normal View History

2014-03-19 09:17:18 -07:00
<!doctype html>
2014-05-14 07:27:18 -07:00
<html lang="en" ng-csp>
2014-03-14 13:38:27 -07:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Copay - Multisignature Wallet</title>
<link rel="stylesheet" href="css/foundation.min.css">
2014-03-28 12:39:58 -07:00
<link rel="stylesheet" href="css/foundation-icons.css">
2014-05-14 07:27:18 -07:00
<link rel="stylesheet" href="lib/angular/angular-csp.css">
2014-03-14 13:38:27 -07:00
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/mobile.css">
2014-05-16 06:39:46 -07:00
<link rel="shortcut icon" href="img/favicon.ico">
2014-03-14 13:38:27 -07:00
</head>
2014-04-25 07:50:53 -07:00
<body ng-cloak class="ng-cloak">
2014-04-25 13:22:51 -07:00
<div id="wrap">
<div data-ng-init="init()" data-ng-controller="HeaderController">
<div class="header">
2014-04-25 13:22:51 -07:00
<div class="header-content">
<div class="large-3 medium-3 small-5 columns">
2014-04-29 07:56:37 -07:00
<span class="logo"></span>
2014-04-25 13:22:51 -07:00
</div>
<div class="large-9 medium-9 small-7 columns text-center p10t" ng-show="$root.wallet && $root.wallet.publicKeyRing.isComplete()">
2014-05-01 08:01:15 -07:00
<div class="large-4 medium-4 columns line-dashed-v">
2014-06-13 15:45:00 -07:00
<a href="#/addresses" class="has-tip" tooltip-placement="bottom" tooltip="ID: {{$root.wallet.id}}">
<strong><span>{{$root.wallet.getName()}}</span></strong>
</a>
2014-04-30 15:50:13 -07:00
<a class="button radius small-icon" title="Manual Refresh"
ng-disabled="$root.loading"
ng-click="refresh()"><i class="fi-refresh"></i></a>
<a class="button radius small-icon" title="Signout"
2014-04-30 15:50:13 -07:00
ng-click="signout()"><i class="fi-power"></i></a>
2014-04-29 10:24:26 -07:00
</div>
<div class="large-4 medium-4 columns line-dashed-v">
Balance<br class="hide-for-small">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
<span ng-if="!$root.updatingBalance" data-options="disable_for_touch:true" tooltip="{{totalBalanceBTC}} BTC" tooltip-trigger="mouseenter" tooltip-placement="bottom">{{totalBalance || 0 |number}} {{$root.unitName}}
</span>
2014-04-29 07:56:37 -07:00
</div>
2014-04-29 10:24:26 -07:00
<div class="large-4 medium-4 columns">
Available to Spend<br class="hide-for-small">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
<span ng-show="!$root.updatingBalance" data-options="disable_for_touch:true" tooltip="{{availableBalanceBTC}} BTC" tooltip-trigger="mouseenter" tooltip-placement="bottom">{{availableBalance || 0|number}} {{$root.unitName}}
</span>
2014-04-29 07:56:37 -07:00
</div>
</div>
2014-03-28 08:32:29 -07:00
</div>
<nav class="top-bar" data-topbar ng-show="$root.wallet && $root.wallet.publicKeyRing.isComplete()">
2014-04-25 13:22:51 -07:00
<ul class="title-area">
<li class="name"></li>
<li class="toggle-topbar menu-icon">
<a ng-click="toggleCollapse()"></a>
2014-04-15 10:02:45 -07:00
</li>
2014-03-28 08:32:29 -07:00
</ul>
2014-04-25 13:22:51 -07:00
<section class="top-bar-section {{isCollapsed && 'hide_menu' || 'show_menu'}}">
<ul>
2014-04-29 15:26:12 -07:00
<li data-ng-repeat="item in menu" ui-route="/{{item.link}}" class="text-center" data-ng-class="{active: isActive(item)}">
<a href="{{item.link}}" ng-click="toggleCollapse()"> <i class="{{item.icon}}"></i> {{item.title}}
2014-05-13 07:27:31 -07:00
<span class="label alert round" ng-if="item.link=='#/transactions' && $root.pendingTxCount > 0">{{$root.pendingTxCount}}</span>
</a>
2014-04-25 13:22:51 -07:00
</li>
</ul>
</section>
</nav>
</div>
2014-04-09 07:05:25 -07:00
<div class="row" ng-if="updateVersion">
<div class="small-9 large-centered columns">
2014-06-04 19:47:22 -07:00
<div data-alert class="alert-box radius {{updateVersion.class}}">
A newer version of Copay is now available ({{updateVersion.version}}), please update your wallet.
Check <a href="http://www.copay.io">Copay.io</a> for details.
</div>
</div>
</div>
2014-06-05 10:55:19 -07:00
<div class="row" ng-if='$root.insightError>0'>
<div class="small-8 large-centered columns">
<div data-alert class="alert-box radius error">
2014-06-05 08:18:54 -07:00
Having troubles connecting to Insight server. Check
you settings and Internet connection.<br>
Reconnect Atempt #{{$root.insightError}}
</div>
</div>
</div>
2014-05-20 08:30:20 -07:00
<div class="row" ng-if='$root.$flashMessage.message' notification>
2014-04-25 13:22:51 -07:00
<div class="small-8 large-centered columns">
2014-05-20 08:30:20 -07:00
<div data-alert class="alert-box radius {{$root.$flashMessage.type}}">
{{$root.$flashMessage.message}}
2014-04-25 13:22:51 -07:00
<a ng-click="clearFlashMessage()" class="close">&times;</a>
</div>
</div>
</div>
2014-04-23 09:44:20 -07:00
<div ng-if='$root.wallet && !$root.wallet.publicKeyRing.isComplete() && !loading'>
<div class="row">
<div class="large-12 medium-12 small-12 columns">
<div class="alert-box secondary radius" data-alert>
<i class="fi-info"></i>
Not all copayers have joined your wallet yet.
2014-05-09 08:29:00 -07:00
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()>1">
{{$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers() }} people have
2014-05-09 08:29:00 -07:00
</span>
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()==1">
One person has
2014-05-09 08:29:00 -07:00
</span>
yet to join.
2014-05-08 11:45:57 -07:00
</div>
2014-05-29 11:55:30 -07:00
</div>
</div>
<div class="row">
<div class="large-12 medium-12 small-12 columns ">
<div class="panel radius m30v">
<h3 class="m15b">Share this secret with your other copayers
<small> for them to join your wallet</small>
</h3>
<div class="row">
<div class="large-9 medium-12 small-12 columns line-dashed-v text-gray">
<div class="panel input">
<p class="ellipsis text-gray">{{$root.wallet.getSecret()}}</p>
2014-05-08 11:45:57 -07:00
</div>
</div>
<div class="large-3 columns hide-for-medium hide-for-small" ng-show="$root.wallet">
<h5 class="m0">{{$root.wallet.getName()}}</h5>
<p class="text-gray">{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} wallet</p>
</div>
2014-04-25 13:22:51 -07:00
</div>
2014-05-08 11:45:57 -07:00
</div>
</div>
</div>
<div class="row">
<div class="large-12 medium-12 small-12 columns ">
<div class="box-setup-copayers">
<div class="box-setup-copayers-fix">
<img class="box-setup-copay" ng-repeat="i in getNumber($root.wallet.totalCopayers) track by $index" src="./img/satoshi.gif" alt="Copayer {{$index+1}}-{{totalCopayers}}" ng-class="{'box-setup-copay-required': ($index+1) <= $root.wallet.publicKeyRing.registeredCopayers()}">
2014-04-25 13:22:51 -07:00
</div>
2014-05-08 11:45:57 -07:00
</div>
</div>
2014-04-25 13:22:51 -07:00
</div>
2014-04-17 14:11:42 -07:00
</div>
2014-04-17 09:43:34 -07:00
2014-04-25 13:22:51 -07:00
</div>
2014-04-17 09:43:34 -07:00
2014-05-14 22:13:25 -07:00
<div notifications="middle right"></div>
<div id="main" class="row" ng-class="{'main-home': !$root.wallet || !$root.wallet.publicKeyRing.isComplete()}">
2014-04-25 13:22:51 -07:00
<div class="large-12 columns" ng-view></div>
</div>
2014-04-09 07:05:25 -07:00
</div>
<div id="footer" data-ng-controller="FooterController" ng-class="{'footer-home': !$root.wallet || !$root.wallet.publicKeyRing.isComplete()}">
2014-04-29 07:56:37 -07:00
<link rel="stylesheet" ng-href="{{theme}}">
2014-06-03 06:53:24 -07:00
<div ng-show="!$root.wallet">
<div class="large-12 columns text-left">
Copay
2014-05-14 17:02:01 -07:00
<small>v{{version}}</small>
2014-05-07 12:08:24 -07:00
</div>
</div>
<div ng-show="$root.wallet && !$root.wallet.publicKeyRing.isComplete()">
<div class="large-6 medium-6 small-6 columns">
<strong>{{$root.wallet.getName()}}</strong>
{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}}
<small ng-if="$root.wallet.getNetworkName()=='livenet'">[LIVENET]</small>
<small ng-if="$root.wallet.getNetworkName()=='testnet'">[TESTNET]</small>
</div>
<div class="large-6 medium-6 small-6 columns text-right">
Copay
<small>v{{version}}</small>
</div>
</div>
<div ng-show="$root.wallet && $root.wallet.publicKeyRing.isComplete()">
<div class="large-3 medium-4 hide-for-small columns">
2014-05-01 08:01:15 -07:00
<div>
2014-06-09 16:08:12 -07:00
<strong>{{$root.wallet.getName()}}</strong>
2014-05-01 08:01:15 -07:00
</div>
<div class="size-12 m10t">
2014-04-29 15:12:14 -07:00
{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} wallet
2014-06-09 16:08:12 -07:00
<span ng-if="$root.wallet.getNetworkName()=='livenet'">[LIVENET]</span>
<span ng-if="$root.wallet.getNetworkName()=='testnet'">[TESTNET]</span>
2014-05-01 08:01:15 -07:00
</div>
<div class="text-gray size-12" style="margin-top:5px">
Copay v{{version}}
</div>
2014-05-01 08:01:15 -07:00
<div class="size-12 m10t" ng-if="themes.length > 1">
<a class="size-12" ng-click="change_theme(th)" ng-repeat="th in themes">{{th}} {{$last ? '' : '&middot; '}}</a>
</div>
2014-04-29 15:12:14 -07:00
</div>
<div class="large-9 medium-8 small-12 columns">
<!-- <div class="bottom&#45;copay" ng&#45;repeat="c in $root.wallet.getRegisteredPeerIds()" class="has&#45;tip" tooltip&#45;popup&#45;delay="1000" tooltip&#45;placement="top" tooltip="{{c.nick}}"> -->
<div class="bottom-copay" ng-repeat="c in $root.wallet.getRegisteredPeerIds()">
<video ng-if="$root.videoInfo[c.peerId]"
2014-05-08 11:48:00 -07:00
avatar peer="{{c}}"
2014-05-07 15:04:36 -07:00
autoplay
2014-05-08 12:31:08 -07:00
ng-class="($root.wallet.getOnlinePeerIDs().indexOf(c.peerId) != -1) ? 'online' : 'offline'"
ng-src="{{getVideoURL(c.peerId)}}"
2014-05-08 11:48:00 -07:00
></video>
<img ng-if="!$root.videoInfo[c.peerId]"
2014-05-08 11:48:00 -07:00
avatar peer="{{c}}"
2014-05-08 12:31:08 -07:00
ng-class="($root.wallet.getOnlinePeerIDs().indexOf(c.peerId) != -1) ? 'online' : 'offline'"
src="./img/satoshi.gif"
2014-05-08 11:48:00 -07:00
/>
<div class="size-12 text-center text-gray" stype="margin-top:4px">
{{c.nick}}
</div>
2014-05-01 08:01:15 -07:00
</div>
2014-04-29 15:12:14 -07:00
</div>
2014-04-29 07:56:37 -07:00
</div>
2014-03-26 05:18:42 -07:00
</div>
2014-03-19 09:17:18 -07:00
<!-- Templates -->
<script type="text/ng-template" id="signin.html">
<div class="signin" ng-controller="SigninController">
<div data-alert class="alert-box info radius" ng-show="loading && !failure">
2014-05-07 14:48:56 -07:00
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
2014-06-02 10:40:00 -07:00
Authenticating and looking for peers...
</div>
<div ng-show="!loading">
2014-04-30 12:11:55 -07:00
<div class="row">
<div class="large-6 medium-6 columns">
2014-05-09 08:29:00 -07:00
<div class="box-signin radius">
2014-05-01 07:51:35 -07:00
<div ng-show="wallets.length">
<h3>Open Wallet</h3>
<form name="openForm" ng-submit="open(openForm)" novalidate>
<select class="form-control" ng-model="selectedWalletId" ng-options="w.id as w.show for w in wallets" required>
</select>
2014-05-09 13:13:56 -07:00
<input type="password" class="form-control" placeholder="Your password" name="openPassword" ng-model="openPassword" required>
<button type="submit" class="button secondary radius" ng-disabled="openForm.$invalid || loading" loading="Opening">Open</button>
</form>
2014-05-01 07:51:35 -07:00
</div>
<div ng-show="!wallets.length">
<h3>Create a new wallet</h3>
2014-05-28 14:17:43 -07:00
<p class="text-gray">
2014-05-27 13:58:04 -07:00
Copay is a free, open-source, multisignature bitcoin wallet. A single-owner bitcoin wallet's security depends on carefully securing the private keys. With copay you can have multiple people controlling the funds, using bitcoin's multisignature functionality, requiring no trust in any third party.
2014-05-28 14:17:43 -07:00
</p>
<a href="#setup" class="button secondary radius">Create</a>
2014-05-01 07:51:35 -07:00
</div>
2014-04-17 08:37:10 -07:00
</div>
</div>
<div class="large-6 medium-6 columns">
2014-05-09 08:29:00 -07:00
<div class="box-signin radius">
<h3>Join a Wallet in Creation</h3>
<form name="joinForm" ng-submit="join(joinForm)" novalidate>
2014-05-14 14:24:24 -07:00
<input type="text" class="form-control" placeholder="Paste wallet secret here" name="connectionId" ng-model="connectionId" wallet-secret required>
<input type="password" class="form-control" placeholder="Choose your password" name="joinPassword" ng-model="$parent.joinPassword" check-strength="passwordStrength" tooltip-html-unsafe="Password strength: {{passwordStrength}}<br/><small>Tip: Use lower and uppercase, numbers and symbols</small>" tooltip-trigger="focus" required>
<input type="text" class="form-control" placeholder="Your name (optional)" name="nickname" ng-model="nickname">
<button type="submit" class="button primary radius" ng-disabled="joinForm.$invalid || loading" loading="Joining">Join</button>
</form>
</div>
</div>
2014-04-21 09:04:47 -07:00
</div>
<div class="row">
2014-04-30 12:11:55 -07:00
<div class="large-12 columns text-center line-dashed">
2014-05-13 10:19:37 -07:00
<a href="#settings">Settings</a> &middot;
2014-04-30 12:11:55 -07:00
<span ng-show="wallets.length">
2014-05-16 13:26:47 -07:00
<a href="#setup">Create a new wallet</a> &middot;
2014-04-30 12:11:55 -07:00
</span>
2014-05-16 13:26:47 -07:00
<a href="#import">Import a backup</a>
2014-03-31 14:05:35 -07:00
</div>
</div>
2014-04-30 12:11:55 -07:00
</div> <!-- End !loading -->
</div>
</script>
2014-04-25 13:34:24 -07:00
<script type="text/ng-template" id="import.html">
<div ng-controller="ImportController">
2014-05-07 14:48:56 -07:00
<div data-alert class="alert-box info radius" ng-show="loading">
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
Importing wallet...
</div>
2014-05-15 14:02:21 -07:00
<div ng-init="choosefile=0; pastetext=0" ng-show="!loading">
<h3>{{title}}</h3>
2014-05-05 09:16:56 -07:00
<form name="importForm" ng-submit="import(importForm)" novalidate>
2014-05-15 14:02:21 -07:00
<div class="row">
<div class="large-6 large-centered medium-6 medium-centered columns">
<fieldset>
<legend>Select which method want to use to restore</legend>
2014-06-03 12:48:27 -07:00
<label for="backupFile" ng-click="openFileDialog()" class="m10b">&middot; Choose backup file from your computer <i class="fi-laptop"></i></label>
2014-05-15 14:02:21 -07:00
<input type="file" class="form-control" placeholder="Select a backup file" name="backupFile" ng-model="backupFile" ng-file-select ng-show="choosefile">
2014-06-03 12:48:27 -07:00
<label for="backupText" ng-click="openPasteArea()" class="m10b">&middot; Paste backup plain text code <i class="fi-clipboard"></i></label>
2014-05-15 14:02:21 -07:00
<textarea class="form-control" name="backupText" ng-model="backupText" rows="5" ng-show="pastetext"></textarea>
</fieldset>
2014-06-02 14:04:13 -07:00
</div>
2014-05-05 09:16:56 -07:00
2014-06-02 14:04:13 -07:00
<div class="large-6 large-centered medium-6 medium-centered columns">
2014-05-15 14:02:21 -07:00
<label for="password">Password <small>Required</small></label>
<input type="password" class="form-control" placeholder="Your wallet password" name="password" ng-model="password" required>
</div>
</div>
2014-06-02 14:04:13 -07:00
<div class="row line-dashed">
<div class="large-6 medium-6 small-5 columns text-left">
<a class="button secondary radius" href="#signin">Go back</a>
</div>
<div class="large-6 medium-6 small-5 columns text-right">
2014-05-15 14:02:21 -07:00
<button type="submit" class="button primary radius right" ng-disabled="importForm.$invalid" loading="Importing">
Import backup
</button>
</div>
</div>
2014-05-05 09:16:56 -07:00
</form>
</div>
2014-04-25 13:34:24 -07:00
</div>
</script>
2014-04-16 13:07:14 -07:00
<script type="text/ng-template" id="setup.html">
<div ng-controller="SetupController">
2014-04-30 10:59:20 -07:00
<div data-alert class="alert-box info radius" ng-show="loading">
2014-05-07 14:48:56 -07:00
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
Creating wallet...
2014-04-16 13:07:14 -07:00
</div>
<div ng-show="!loading">
<form name="setupForm" ng-submit="create(setupForm)" novalidate>
2014-06-02 13:40:18 -07:00
<h3>Create new wallet</h3>
<div class="row">
<div class="small-12 medium-8 medium-centered large-8 large-centered columns">
<label>Wallet name <small>Optional</small>
<input type="text" placeholder="Family vacation funds" class="form-control" ng-model="walletName">
</label>
2014-05-28 13:51:49 -07:00
</div>
2014-06-02 13:40:18 -07:00
<div class="small-12 medium-8 medium-centered large-8 large-centered columns">
<div class="row">
<div class="small-12 medium-6 large-6 columns">
<label>Your name <small>Optional</small>
<input type="text" placeholder="Name" class="form-control" ng-model="myNickname">
</label>
</div>
<div class="small-12 medium-6 large-6 columns">
<label>Your Wallet Password <small data-options="disable_for_touch:true" class="has-tip" tooltip="doesn't need to be shared">Required</small>
2014-06-02 13:40:18 -07:00
<input type="password" placeholder="Choose your password" class="form-control"
ng-model="$parent.walletPassword" check-strength="passwordStrength" tooltip-html-unsafe="Password strength: {{passwordStrength}}<br/><small>Tip: Use lower and uppercase, numbers and symbols</small>" tooltip-trigger="focus" required>
2014-06-02 13:40:18 -07:00
</label>
</div>
</div>
2014-04-16 13:07:14 -07:00
</div>
2014-06-02 13:40:18 -07:00
<div class="small-12 medium-8 medium-centered large-8 large-centered columns box-setup">
<fieldset>
<div class="row">
<div class="large-6 medium-6 columns line-dashed-v">
<label>Select total number of copayers
<select ng-model="totalCopayers" ng-options="totalCopayers as totalCopayers for totalCopayers in TCValues">
</select>
</label>
</div>
<div class="large-6 medium-6 columns">
<label>Select required signatures
<select ng-model="requiredCopayers" ng-options="requiredCopayers as requiredCopayers for requiredCopayers in RCValues">
</select>
</label>
</div>
</div>
</fieldset>
</div>
<div class="small-12 medium-6 medium-centered large-6 large-centered columns m10b">
2014-04-30 14:47:44 -07:00
<div class="box-setup-copayers">
<div class="box-setup-copayers-fix">
<img class="box-setup-copay" ng-repeat="i in getNumber(totalCopayers) track by $index" src="./img/satoshi.gif" alt="Copayer {{$index+1}}-{{totalCopayers}}" ng-class="{'box-setup-copay-required': ($index+1) <= requiredCopayers}">
</div>
</div>
</div>
2014-06-02 13:40:18 -07:00
</div>
2014-06-03 12:48:27 -07:00
2014-06-02 13:40:18 -07:00
<div class="row line-dashed">
<div class="large-6 medium-6 small-5 columns text-left">
<a class="button secondary radius" href="#signin">Go back</a>
</div>
2014-06-02 13:40:18 -07:00
<div class="large-6 medium-6 small-7 columns text-right">
<button type="submit" class="button primary radius" ng-disabled="setupForm.$invalid || loading">
Create {{requiredCopayers}}-of-{{totalCopayers}} wallet
</button>
2014-05-01 05:41:18 -07:00
</div>
2014-04-30 14:47:44 -07:00
</div>
</form>
2014-04-16 13:07:14 -07:00
</div>
</div>
</script>
<!-- ADDRESS -->
<script type="text/ng-template" id="addresses.html">
2014-05-19 13:51:21 -07:00
<div class="addresses" ng-controller="AddressesController">
<div ng-show='$root.wallet.publicKeyRing.isComplete()'>
<div class="row">
<div class="large-9 medium-12 columns" ng-if="addresses[0]">
2014-05-22 13:42:56 -07:00
<div class="large-8 medium-8 columns" ng-init="showAll=0">
<a class="panel radius db" ng-repeat="addr in addresses | limitAddress:showAll"
ng-click="selectAddress(addr)"
ng-class="{selected : addr.address == selectedAddr.address}">
<span><contact address="{{addr.address}}" tooltip-popup-delay="500" tooltip tooltip-placement="right"/></span>
2014-05-22 13:42:56 -07:00
<small ng-if="addr.isChange">change</small>
2014-04-30 15:50:13 -07:00
<span class="right">
<span ng-if="addrWithFund == addr.address">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
<span ng-if="!$root.updatingBalance">
{{$root.balanceByAddr[addr.address] || 0|number}} {{$root.unitName}}
</span>
</span>
<span ng-if="addrWithFund != addr.address">
{{addr.balance || 0|number}} {{$root.unitName}}
</span>
2014-04-30 08:25:33 -07:00
</span>
</a>
2014-05-22 13:42:56 -07:00
2014-06-23 09:26:13 -07:00
<a class="secondary radius" ng-click="showAll=!showAll" ng-show="addresses.length != (addresses|limitAddress).length">
2014-05-22 13:42:56 -07:00
<span ng-if="!showAll">Show all</span>
<span ng-if="showAll">Show less</span>
2014-05-28 13:51:49 -07:00
</a>
</div>
<div class="large-4 medium-4 columns line-dashed-v text-center" highlight-on-change="selectedAddr" ng-show="selectedAddr">
<qrcode size="160" data="{{selectedAddr.address}}"></qrcode>
2014-04-30 15:50:13 -07:00
<p class="m10t">
<strong>
<span ng-if="addrWithFund == selectedAddr.address">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
2014-06-12 13:42:26 -07:00
<span ng-if="!$root.updatingBalance">{{balanceByAddr[selectedAddr.address] || 0 | number}}
</span>
</span>
<span ng-if="addrWithFund != selectedAddr.address" style="word-wrap: break-word;">
{{selectedAddr.address}}<br/>
{{selectedAddr.balance || 0|number}} {{$root.unitName}}
</span>
2014-04-30 15:50:13 -07:00
</strong>
2014-04-30 08:25:33 -07:00
</p>
</div>
</div>
<div class="columns text-center m10t" ng-class="{'large-3' : !!addresses[0]}">
<p> Create a New <strong> Address </strong> </p>
2014-04-30 15:50:13 -07:00
<button class="secondary radius expandi new-address" ng-click="newAddr()"
ng-disabled="loading" loading="Creating"> Create </button>
</div>
</div>
</div>
</div>
2014-03-26 05:18:42 -07:00
</script>
2014-03-26 13:56:11 -07:00
<!-- TRANSACTIONS -->
2014-03-26 05:18:42 -07:00
<script type="text/ng-template" id="transactions.html">
<div class="transactions" data-ng-controller="TransactionsController">
<div class="row" ng-show='$root.wallet.publicKeyRing.isComplete()'>
2014-04-14 13:58:12 -07:00
<div class="large-12 columns">
2014-06-03 07:35:38 -07:00
<h4> Transaction proposals <small>({{txs.length}})</small></h4>
2014-06-03 07:35:38 -07:00
<ul class="inline-list">
2014-06-03 09:53:43 -07:00
<li> <a class="text-gray size-12" ng-click="show(true)" ng-disabled="loading || onlyPending" loading="Updating" ng-class="{'active' : onlyPending}"> [ Pending ] </a> </li>
<li> <a class="text-gray size-12" ng-click="show()" ng-disabled="loading || !onlyPending" loading="Updating" ng-class="{'active' : !onlyPending}"> [ All ] </a> </li>
</ul>
<div class="panel radius pending" ng-repeat="tx in txs | paged">
2014-05-19 12:56:07 -07:00
<div class="txheader row m10">
<div class="large-8 medium-8 small-12 columns">
<div class="row" ng-repeat="out in tx.outs">
<div class="large-3 medium-3 small-3 columns ellipsis"> {{out.value | number}} {{$root.unitName}}</div>
2014-05-19 12:56:07 -07:00
<div class="large-1 medium-1 small-2 columns fi-arrow-right size-24"> </div>
<div class="large-8 medium-8 small-7 columns ellipsis">
<contact address="{{out.address}}" tooltip-popup-delay="500" tooltip tooltip-placement="right"/>
</div>
2014-04-20 15:08:04 -07:00
</div>
</div>
2014-05-19 12:56:07 -07:00
<div class="large-4 medium-4 small-12 columns text-right">
<h6>{{tx.createdTs | amCalendar}}</h6>
</div>
2014-04-18 07:33:49 -07:00
</div>
2014-04-20 15:08:04 -07:00
<div class="tx-copayers">
<div class="box-note large-12" ng-show="tx.comment">
"{{tx.comment}}" - {{$root.wallet.publicKeyRing.nicknameForCopayer(tx.creator)}}
</div>
2014-04-29 12:34:40 -07:00
2014-04-30 14:46:52 -07:00
<div class="box-copayers" ng-repeat="(cId, actions) in tx.peerActions">
2014-04-29 12:34:40 -07:00
<figure class="left">
<a href="#/transactions" class="has-tip" tooltip-popup-delay="1000" tooltip="{{cId === $root.wallet.getMyCopayerId() ? 'You' : $root.wallet.publicKeyRing.nicknameForCopayer(cId)}}">
<img src="./img/satoshi.gif" alt="{{cId}}" width="200">
2014-04-29 15:43:38 -07:00
</a>
2014-04-29 12:34:40 -07:00
</figure>
<div class="box-status">
2014-04-29 15:43:38 -07:00
<span ng-repeat="(action, ts) in actions">
<a ng-if="action == 'create'" href="#/transactions" class="has-tip" tooltip-popup-delay="1000" tooltip="Created {{ts | amTimeAgo}}">
2014-04-29 15:43:38 -07:00
<i class="fi-crown size-12 icon-status icon-active"></i>
</a>
<a ng-if="action == 'seen'" href="#/transactions" class="has-tip" tooltip-popup-delay="1000" tooltip="Seen {{ts | amTimeAgo}}">
2014-04-29 15:43:38 -07:00
<i class="fi-eye size-12 icon-status icon-active"></i>
</a>
<a ng-if="action == 'sign'" href="#/transactions" class="has-tip" tooltip-popup-delay="1000" tooltip="Signed {{ts | amTimeAgo}}">
2014-04-29 15:43:38 -07:00
<i class="fi-check size-12 icon-status icon-active-check"></i>
</a>
<a ng-if="action == 'rejected'" href="#/transactions" class="has-tip" tooltip-popup-delay="1000" tooltip="Rejected {{ts | amTimeAgo}}">
2014-04-30 12:11:50 -07:00
<i class="fi-x size-12 icon-status icon-active-x"></i>
2014-04-29 15:43:38 -07:00
</a>
</span>
2014-04-29 12:34:40 -07:00
</div>
2014-04-30 14:46:52 -07:00
<div class="text-center" style="margin-right:16px; color:#999; font-size:12px">
{{$root.wallet.publicKeyRing.nicknameForCopayer(cId)}}
</div>
</div>
2014-04-18 07:33:49 -07:00
</div>
2014-04-20 15:08:04 -07:00
<div class="row m10">
2014-05-19 12:56:07 -07:00
<div class="large-5 medium-5 columns" ng-show="!tx.sentTs">
<div ng-show="!tx.signedByUs && !tx.rejectedByUs && !tx.finallyRejected && tx.missingSignatures">
<button class="secondary radius m10r" ng-click="sign(tx.ntxid)" ng-disabled="loading" loading="Signing">
2014-04-30 10:59:20 -07:00
<i class="fi-check"></i> Sign
</button>
<button class="warning radius" ng-click="reject(tx.ntxid)" ng-disabled="loading" loading="Rejecting">
<i class="fi-x" ></i> Reject
2014-04-30 10:59:20 -07:00
</button>
2014-04-20 15:08:04 -07:00
</div>
2014-05-19 12:56:07 -07:00
<div ng-show="!tx.missingSignatures && !tx.sentTs">
2014-04-30 10:59:20 -07:00
<button class="primary radius" ng-click="send(tx.ntxid)" ng-disabled="loading" loading="Broadcasting"> <i class=".fi-upload-cloud"></i>
Broadcast Transaction
</button>
2014-05-19 12:56:07 -07:00
</div>
2014-04-30 10:59:20 -07:00
</div>
2014-05-19 12:56:07 -07:00
<div class="large-7 medium-7 columns text-right">
<div ng-show="tx.finallyRejected" class="text-warning m10b">
2014-04-30 10:59:20 -07:00
Transaction finally rejected
</div>
2014-05-16 08:12:11 -07:00
<div ng-show="!tx.missingSignatures && tx.sentTs">
<div class="success m10b">
<strong>Sent</strong> <span class="text-gray" am-time-ago="tx.sentTs"></span>
</div>
<div class="ellipsis small">
Transaction ID:
<a href="http://{{getShortNetworkName()}}.insight.is/tx/{{tx.sentTxid}}" target="blank">
{{tx.sentTxid}}
</a>
</div>
2014-05-16 08:12:11 -07:00
</div>
<p class="text-gray m5b" ng-show="!tx.finallyRejected && tx.missingSignatures==1">
2014-04-30 10:59:20 -07:00
One signature missing
</p>
<p class="text-gray m5b" ng-show="!tx.finallyRejected && tx.missingSignatures>1">
2014-04-30 10:59:20 -07:00
{{tx.missingSignatures}} signatures missing</p>
<div class="ellipsis small text-gray">
<strong>Fee:</strong> {{tx.fee|number}} {{$root.unitName}}
<strong>Proposal ID:</strong> {{tx.ntxid}}
</div>
2014-04-20 15:08:04 -07:00
</div>
2014-04-18 07:33:49 -07:00
</div>
2014-04-20 15:08:04 -07:00
</div>
<p ng-show="onlyPending && txs.length == 0">No pending transactions proposals.</p>
<p ng-show="!onlyPending && txs.length == 0">No transactions proposals yet.</p>
<pagination ng-show="!onlyPending && txs.length > txpItemsPerPage" total-items="txs.length" items-per-page="txpItemsPerPage" page="txpCurrentPage" on-select-page="show()" class="pagination-small primary"></pagination>
2014-04-08 10:16:38 -07:00
</div>
<div class="large-12 columns">
<h4>Last transactions</h4>
<div class="m10b size-12">
<a class="text-gray active" ng-click="toogleLast()" ng-disabled="loading" loading="Loading" ng-hide="lastShowed && !loading">[ Show ]</a>
<a class="text-gray" ng-click="toogleLast()" ng-disabled="loading" loading="Loading" ng-show="lastShowed && !loading">[ Hide ]</a>
</div>
<div class="btransactions" ng-if="lastShowed">
<div ng-if="!blockchain_txs[0].txid && !loading">
No transactions yet.
</div>
2014-04-30 12:11:50 -07:00
<div class="panel radius" ng-repeat="btx in blockchain_txs | orderBy: 'firstSeenTs':true">
<div class="m10 size-12">
<div class="row">
<div class="large-8 columns">
2014-05-27 11:40:59 -07:00
<a class="ellipsis" href="http://{{getShortNetworkName()}}.insight.is/tx/{{btx.txid}}" target="blank">
{{btx.txid}}
</a>
</div>
<div class="large-4 columns text-right">
<div data-ng-show="btx.firstSeenTs">
first seen at
<time>{{btx.firstSeenTs * 1000 | amCalendar}}</time>
</div>
<div data-ng-show="btx.time && !btx.firstSeenTs">
mined at
<time>{{btx.time * 1000 | amCalendar}}</time>
</div>
</div>
</div>
</div>
2014-04-30 12:11:50 -07:00
<div class="tx-copayers">
<div class="row">
<div class="large-5 medium-5 small-5 columns">
<div ng-repeat="vin in btx.vinSimple">
<small class="right m5t">{{vin.value| number}} {{$root.unitName}}</small>
<p class="ellipsis text-gray size-12">
<contact address="{{vin.addr}}" tooltip-popup-delay="500" tooltip tooltip-placement="right"/>
</p>
</div>
</div>
<div class="large-1 medium-1 small-1 columns text-center">
<i class="fi-arrow-right"></i>
</div>
<div class="large-6 medium-6 small-6 columns">
<div ng-repeat="vout in btx.voutSimple">
<small class="right m5t">{{vout.value| number}} {{$root.unitName}}</small>
<p class="ellipsis text-gray size-12">
<contact address="{{vout.addr}}" tooltip-popup-delay="500" tooltip tooltip-placement="right"/>
</p>
</div>
</div>
</div>
</div>
<div class="m10 size-12 text-gray">
<div class="row">
<div class="large-4 medium-4 small-4 columns">Fees: {{btx.fees | number}} {{$root.unitName}}</div>
2014-05-27 11:40:59 -07:00
<div class="large-4 medium-4 small-4 columns text-center">Confirmations: {{btx.confirmations || 0}}</div>
<div class="large-4 medium-4 small-4 columns text-right">Total: {{btx.valueOut| number}} {{$root.unitName}}</div>
</div>
</div>
2014-04-08 10:16:38 -07:00
</div>
</div>
</div>
</div>
2014-03-26 05:18:42 -07:00
</div>
</script>
2014-03-26 13:56:11 -07:00
<!-- SEND -->
2014-03-26 05:18:42 -07:00
<script type="text/ng-template" id="send.html">
<div class="send" data-ng-controller="SendController">
<div class="row" ng-show='$root.wallet.publicKeyRing.isComplete()'>
2014-05-07 11:16:56 -07:00
<div class="medium-6 medium-centered large-6 large-centered columns">
<h3>{{title}}</h3>
<form name="sendForm" ng-submit="submitForm(sendForm)" novalidate>
<div class="row">
<div class="large-12 columns">
2014-05-06 13:02:49 -07:00
<div class="row collapse">
<label for="address">To address
2014-05-07 07:21:30 -07:00
<small ng-hide="!sendForm.address.$pristine || address">required</small>
<small class="is-valid" ng-show="!sendForm.address.$invalid && address">valid!</small>
<small class="has-error" ng-show="sendForm.address.$invalid && address">
2014-05-06 13:02:49 -07:00
not valid</small>
</label>
<div class="small-10 columns">
2014-05-26 07:51:27 -07:00
<input type="text" id="address" name="address" ng-disabled="loading"
placeholder="Send to" ng-model="address" valid-address required>
2014-05-06 13:02:49 -07:00
</div>
2014-05-22 10:40:46 -07:00
<div class="small-2 columns" ng-hide="showScanner || !isHttp">
2014-05-08 08:27:08 -07:00
<a class="postfix button secondary" ng-click="openScanner()"><i class="fi-camera"></i></a>
2014-05-06 13:02:49 -07:00
</div>
2014-05-22 10:40:46 -07:00
<div class="small-2 columns" ng-show="showScanner && isHttp">
2014-05-08 08:27:08 -07:00
<a class="postfix button warning" ng-click="cancelScanner()">Cancel</a>
2014-05-06 13:02:49 -07:00
</div>
</div>
<div id="scanner" class="row" ng-if="showScanner">
<div class="text-centered">
<canvas id="qr-canvas" width="200" height="150"></canvas>
<div ng-show="isMobile">
<div id="file-input-wrapper" class="btn btn-primary">
<span class="pull-left text-centered">
<i class="glyphicon glyphicon-refresh icon-rotate"></i>
Get QR code
</span>
<input id="qrcode-camera" type="file" capture="camera" accept="image/*">
</div>
</div>
<div ng-hide="isMobile">
<video id="qrcode-scanner-video" width="300" height="225" ng-hide="isMobile"></video>
</div>
</div>
</div>
</div>
</div>
<div class="row">
2014-05-07 11:16:56 -07:00
<div class="large-6 medium-6 columns">
<div class="row collapse">
<label for="amount">Amount
<small ng-hide="!sendForm.amount.$pristine">required</small>
2014-06-23 11:17:21 -07:00
<i class="fi-arrow-up" title="Send all funds" ng-click="topAmount()"></i>
<small class="is-valid" ng-show="!sendForm.amount.$invalid && !sendForm.amount.$pristine">Valid</small>
<small class="has-error" ng-show="sendForm.amount.$invalid && !sendForm.amount.$pristine && !notEnoughAmount">
Not valid
</small>
<small ng-show="notEnoughAmount" class="has-error">Insufficient funds</small>
</label>
<div class="small-9 columns">
2014-05-26 07:51:27 -07:00
<input type="number" id="amount" ng-disabled="loading"
name="amount" placeholder="Amount" ng-model="amount"
2014-06-13 15:45:00 -07:00
min="1" max="10000000000" enough-amount required
2014-06-12 13:42:26 -07:00
autocomplete="off"
>
</div>
<div class="small-3 columns">
<span class="postfix">{{$root.unitName}}</span>
</div>
</div>
</div>
2014-06-12 13:42:26 -07:00
<div class="large-6 medium-6 columns m10t" ng-show="amount>0">
<small>
Total amount for this transaction:
</small>
<div class="totalAmount">
<b>{{amount + defaultFee |number}}</b> {{$root.unitName}}
2014-06-13 15:45:00 -07:00
<small>
{{ ((amount + defaultFee) * unitToBtc) |number}} BTC
2014-06-13 15:45:00 -07:00
</small>
2014-06-12 13:42:26 -07:00
</div>
<small>
Including fee of {{defaultFee|number}} {{$root.unitName}}
2014-06-12 13:42:26 -07:00
</small>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="row collapse">
<label for="comment">Note
<small ng-hide="!sendForm.comment.$pristine">optional</small>
<small class="is-valid" ng-show="!sendForm.comment.$invalid && !sendForm.comment.$pristine">valid!</small>
<small class="has-error" ng-show="sendForm.comment.$invalid && !sendForm.comment.$pristine">too long!</small>
</label>
2014-06-19 11:36:16 -07:00
<div class="large-12 columns">
<textarea id="comment" ng-disabled="loading"
2014-06-13 15:45:00 -07:00
name="comment" placeholder="Leave a private message to your copayers" ng-model="commentText" ng-maxlength="100"></textarea>
</div>
</div>
</div>
</div>
<div class="row">
2014-04-24 18:43:19 -07:00
<div class="large-5 columns">
2014-04-30 10:59:20 -07:00
<button type="submit" class="button secondary radius text-center" ng-disabled="sendForm.$invalid || loading" loading="Sending">
Send
</button>
</div>
</div>
2014-04-16 06:52:13 -07:00
</form>
2014-06-18 16:18:13 -07:00
</div>
<div class="medium-8 medium-centered large-8 large-centered columns">
2014-06-17 21:00:32 -07:00
<hr>
<h3>Address Book</h3>
2014-06-23 15:22:53 -07:00
<p class="text-gray" ng-hide="showAddressBook()">Empty. Create an alias for your addresses</p>
2014-06-18 16:18:13 -07:00
<table ng-show="showAddressBook()">
2014-06-17 21:00:32 -07:00
<thead>
<tr>
<th>Label</td>
<th>Address</td>
2014-06-18 16:18:13 -07:00
<th>Creator</td>
<th>Date</td>
2014-06-17 21:00:32 -07:00
<th>&nbsp;</td>
</tr>
</thead>
<tbody>
2014-06-18 16:18:13 -07:00
<tr ng-repeat="(addr, info) in $root.wallet.addressBook" ng-if="info.copayerId != -1">
<td><a ng-click="copyAddress(addr)" title="Copy address">{{info.label}}</a></td>
<td>{{addr}}</td>
<td>{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
<td><time>{{info.createdTs | amCalendar}}</time></td>
2014-06-17 21:00:32 -07:00
<td><a ng-click="deleteAddressBook(addr)"><i class="fi-trash"></i></a></td>
</tr>
</tbody>
</table>
<button class="m10t button tiny secondary radius text-center" ng-click="openAddressBookModal()">Add New Entry</button>
2014-04-16 06:52:13 -07:00
</div>
</div>
2014-03-26 05:18:42 -07:00
</div>
</script>
2014-06-17 21:00:32 -07:00
<script type="text/ng-template" id="addressBookModal.html">
<h3>Add Address Book Entry</h3>
<form name="addressBookForm" ng-submit="submitAddressBook(addressBookForm)" novalidate>
<label for="newaddress">Address
<small ng-hide="!addressBookForm.newaddress.$pristine || newaddress">required</small>
<small class="is-valid" ng-show="!addressBookForm.newaddress.$invalid && newaddress">Valid</small>
<small class="has-error" ng-show="addressBookForm.newaddress.$invalid && newaddress">
Not valid</small>
<input type="text" id="newaddress" name="newaddress" ng-disabled="loading"
placeholder="Address" ng-model="newaddress" valid-address required>
</label>
<label for="newlabel">Label
<small ng-hide="!addressBookForm.newlabel.$pristine || newlabel">required</small>
<input type="text" id="newlabel" name="newlabel" ng-disabled="loading"
placeholder="Label" ng-model="newlabel" required>
</label>
<a class="button small default radius" ng-click="cancel()">Cancel</a>
<input type="submit" class="button small secondary radius right" ng-disabled="addressBookForm.$invalid || loading" value="Add Address">
</form>
<a class="close-reveal-modal" ng-click="cancel()">&#215;</a>
</script>
2014-03-26 13:56:11 -07:00
<!-- BACKUP -->
2014-03-26 05:18:42 -07:00
<script type="text/ng-template" id="backup.html">
2014-05-13 10:19:37 -07:00
<div class="backup" ng-controller="BackupController">
<h3>{{title}}</h3>
2014-06-23 15:19:55 -07:00
<div class="row">
<div class="large-4 medium-6 columns large-centered medium-centered">
<a class="panel radius box-backup text-center" ng-click="download()">
2014-04-03 12:32:17 -07:00
<i class="fi-download size-72"></i>
<p> Download File </p>
</a>
</div>
2014-06-23 15:19:55 -07:00
</div>
<div class="row text-center">
<div class="button radius warning small m30v" ng-really-message="Are you sure to delete this wallet from this computer?" ng-really-click="deleteWallet()">Delete this wallet from this computer</div>
2014-04-03 12:32:17 -07:00
</div>
2014-03-26 05:18:42 -07:00
</div>
2014-03-19 09:17:18 -07:00
</script>
2014-04-17 09:43:34 -07:00
2014-05-13 10:19:37 -07:00
<!-- CONFIG -->
<script type="text/ng-template" id="settings.html">
<div class="settings" ng-controller="SettingsController">
<h3>{{title}}</h3>
2014-05-15 12:58:15 -07:00
<form name="settingsForm">
<div class="small-12 medium-6 medium-centered large-6 large-centered columns">
<fieldset>
<legend>Bitcoin Network</legend>
<input id="network-name" type="checkbox" ng-model="networkName" ng-true-value="livenet" ng-false-value="testnet" class="form-control">
<label for="network-name">Livenet</label>
</fieldset>
<fieldset>
<legend>Wallet Unit</legend>
<select class="form-control" ng-model="selectedUnit" ng-options="o.name for o in unitOpts" required>
</select>
<label for="settingsUnit">Prefered Unit for Wallet</label>
</fieldset>
<fieldset>
<legend>Videoconferencing</legend>
<input id="disableVideo-opt" type="checkbox" ng-model="disableVideo" class="form-control">
<label for="disableVideo-opt">Enable videoconferencing (only for fast Networks)</label>
</fieldset>
2014-05-15 12:58:15 -07:00
<fieldset>
<legend>Insight API server</legend>
<label for="insight-host">Host</label>
<input type="text" ng-model="insightHost" class="form-control" name="insight-host">
<label for="insight-port">Port</label>
<input type="number" ng-model="insightPort" class="form-control" name="insight-port">
</fieldset>
<fieldset>
<legend>PeerJS server</legend>
<label for="peerjs-key">Key</label>
<input type="text" ng-model="networkKey" class="form-control" name="peerjs-key">
<label for="peerjs-host">Host</label>
<input type="text" ng-model="networkHost" class="form-control" name="peerjs-host">
<label for="peerjs-port">Port</label>
<input type="number" ng-model="networkPort" class="form-control" name="peerjs-port">
2014-06-10 06:06:08 -07:00
<input id="peerjs-secure" type="checkbox" ng-model="networkSecure" class="form-control" disabled="disabled">
<label for="peerjs-secure">Use SSL (disabled)</label>
2014-05-15 12:58:15 -07:00
</fieldset>
</div>
<div class="row">
<div class="large-12 columns line-dashed">
<button type="submit" class="button primary radius right ng-binding" ng-disabled="setupForm.$invalid || loading" disabled="disabled" ng-click="save()">
Save
</button>
2014-05-16 08:40:26 -07:00
<a class="button secondary radius" href="#signin" ng-hide="$root.wallet">Home</a>
2014-05-13 10:19:37 -07:00
</div>
</div>
2014-05-15 12:58:15 -07:00
</form>
2014-05-13 10:19:37 -07:00
</div>
</script>
2014-05-12 08:00:25 -07:00
<!-- UNSUPPORTED -->
<script type="text/ng-template" id="unsupported.html">
<h2 class="text-center">Browser unsupported</h2>
<h3 class="text-center">
Copay uses webRTC for peer-to-peer communications,
but your browser does not support it.
Please use
a current version of Google Chrome, Mozilla Firefox, or Opera.
2014-05-12 08:00:25 -07:00
<br><br>
For more information
on supported browsers please check <a href="http://www.webrtc.org/">http://www.webrtc.org/</a>
</h3>
</script>
2014-03-26 13:56:11 -07:00
<!-- NOT FOUND -->
2014-03-19 09:17:18 -07:00
<script type="text/ng-template" id="404.html">
2014-03-26 05:18:42 -07:00
<h2 class="text-center">404</h2>
<h3 class="text-center">Page not found</h3>
<p class="text-center"><a href="#/">go back...</a></p>
2014-03-19 09:17:18 -07:00
</script>
<script src="config.js"></script>
<script src="lib/mousetrap/mousetrap.min.js"></script>
2014-06-03 07:35:24 -07:00
<script src="js/shell.js"></script>
2014-03-19 09:17:18 -07:00
<script src="lib/angular/angular.min.js"></script>
2014-05-16 13:18:25 -07:00
<script src="lib/moment/moment.js"></script>
<script src="lib/angular-moment/angular-moment.js"></script>
2014-03-26 13:56:11 -07:00
<script src="lib/qrcode-generator/js/qrcode.js"></script>
<script src="lib/angular-qrcode/qrcode.js"></script>
2014-03-19 09:17:18 -07:00
<script src="lib/angular-route/angular-route.min.js"></script>
<script src="lib/angular-foundation/mm-foundation.min.js"></script>
<script src="lib/angular-foundation/mm-foundation-tpls.min.js"></script>
2014-06-09 08:52:01 -07:00
<script src="lib/peerjs/peer.min.js"></script>
2014-05-14 13:36:34 -07:00
<script src="lib/bitcore/browser/bundle.js"></script>
2014-04-28 13:23:15 -07:00
<script src="lib/crypto-js/rollups/sha256.js"></script>
<script src="lib/crypto-js/rollups/pbkdf2.js"></script>
2014-04-15 14:13:25 -07:00
<script src="lib/crypto-js/rollups/aes.js"></script>
2014-04-17 14:02:20 -07:00
<script src="lib/file-saver/FileSaver.js"></script>
2014-06-04 16:17:45 -07:00
<script src="lib/socket.io-client/socket.io.js"></script>
2014-04-30 10:14:43 -07:00
<script src="lib/sjcl.js"></script>
2014-05-06 13:02:49 -07:00
<script src="lib/ios-imagefile-megapixel/megapix-image.js"></script>
<script src="lib/qrcode-decoder-js/lib/qrcode-decoder.min.js"></script>
<script src="js/copayBundle.js"></script>
2014-04-07 11:31:41 -07:00
2014-03-19 09:17:18 -07:00
<script src="js/app.js"></script>
2014-04-07 20:54:38 -07:00
<script src="js/routes.js"></script>
2014-03-19 09:17:18 -07:00
<script src="js/directives.js"></script>
<script src="js/filters.js"></script>
<script src="js/services/socket.js"></script>
2014-04-23 17:20:44 -07:00
<script src="js/services/video.js"></script>
2014-04-16 15:14:58 -07:00
<script src="js/services/walletFactory.js"></script>
2014-04-17 07:46:49 -07:00
<script src="js/services/controllerUtils.js"></script>
2014-04-30 06:52:39 -07:00
<script src="js/services/passphrase.js"></script>
2014-05-14 22:13:25 -07:00
<script src="js/services/notifications.js"></script>
2014-06-16 12:46:17 -07:00
<script src="js/services/backupService.js"></script>
2014-06-19 11:18:58 -07:00
<script src="js/services/isMobile.js"></script>
2014-03-25 07:35:04 -07:00
<script src="js/controllers/header.js"></script>
2014-04-25 13:22:51 -07:00
<script src="js/controllers/footer.js"></script>
<script src="js/controllers/addresses.js"></script>
2014-03-26 05:18:42 -07:00
<script src="js/controllers/transactions.js"></script>
<script src="js/controllers/send.js"></script>
<script src="js/controllers/backup.js"></script>
<script src="js/controllers/signin.js"></script>
2014-04-16 13:07:14 -07:00
<script src="js/controllers/setup.js"></script>
2014-04-25 13:34:24 -07:00
<script src="js/controllers/import.js"></script>
2014-05-13 10:19:37 -07:00
<script src="js/controllers/settings.js"></script>
2014-03-25 07:35:04 -07:00
2014-03-19 09:17:18 -07:00
<script src="js/init.js"></script>
2014-03-14 13:38:27 -07:00
</body>
</html>