fix icon url

This commit is contained in:
bechi 2015-10-19 16:45:13 -03:00
commit 35194ae463
2 changed files with 14 additions and 14 deletions

View file

@ -58,7 +58,7 @@
<div class="text-center m20v"> <div class="text-center m20v">
<img src="img/glidera-logo.png" ng-click="index.updateGlidera(index.glideraToken, index.glideraPermissions)" width="200"> <img src="img/glidera-logo.png" ng-click="index.updateGlidera(index.glideraToken, index.glideraPermissions)" width="200">
</div> </div>
<div class="text-center small-10 small-centered columns" ng-show="!showOauthForm"> <div class="text-center small-10 small-centered columns" ng-show="!showOauthForm">
<p class="m10b">You can buy and sell Bitcoin with a US bank account directly in Copay.</p> <p class="m10b">You can buy and sell Bitcoin with a US bank account directly in Copay.</p>
<p class="m20t text-gray size-12 text-left"> <p class="m20t text-gray size-12 text-left">
@ -95,7 +95,7 @@
ng-style="{'background-color':index.backgroundColor}" ng-style="{'background-color':index.backgroundColor}"
type="submit" value="Get started" ng-disabled="oauthCodeForm.$invalid || glidera.loading"> type="submit" value="Get started" ng-disabled="oauthCodeForm.$invalid || glidera.loading">
</form> </form>
<button class="button light-gray expand outline round" <button class="button light-gray expand outline round"
ng-click="showOauthForm = false; index.glideraError = null; glidera.error = null"> ng-click="showOauthForm = false; index.glideraError = null; glidera.error = null">
<i class="fi-arrow-left"></i> <span class="tu">Back</span> <i class="fi-arrow-left"></i> <span class="tu">Back</span>
</button> </button>
@ -150,7 +150,7 @@
<li ng-show="index.glideraPermissions.transact && <li ng-show="index.glideraPermissions.transact &&
(index.glideraStatus.userCanBuy || index.glideraStatus.userCanTransact)" class="line-b line-t p20 pointer" (index.glideraStatus.userCanBuy || index.glideraStatus.userCanTransact)" class="line-b line-t p20 pointer"
ng-click="$root.go('buyGlidera')"> ng-click="$root.go('buyGlidera')">
<img src="../img/buy-bitcoin.svg" alt="buy bitcoin" width="40"> <img src="img/buy-bitcoin.svg" alt="buy bitcoin" width="40">
<span class="m10 text-normal text-bold">Buy Bitcoin</span> <span class="m10 text-normal text-bold">Buy Bitcoin</span>
<span class="right text-gray"> <span class="right text-gray">
<i class="icon-arrow-right3 size-24 right"></i> <i class="icon-arrow-right3 size-24 right"></i>
@ -160,7 +160,7 @@
ng-show="index.glideraPermissions.transact && ng-show="index.glideraPermissions.transact &&
(index.glideraStatus.userCanSell || index.glideraStatus.userCanTransact)" (index.glideraStatus.userCanSell || index.glideraStatus.userCanTransact)"
ng-click="$root.go('sellGlidera')"> ng-click="$root.go('sellGlidera')">
<img src="../img/sell-bitcoin.svg" alt="buy bitcoin" width="40"> <img src="img/sell-bitcoin.svg" alt="buy bitcoin" width="40">
<span class="m10 text-normal text-bold">Sell Bitcoin</span> <span class="m10 text-normal text-bold">Sell Bitcoin</span>
<span class="right text-gray"> <span class="right text-gray">
<i class="icon-arrow-right3 size-24 right"></i> <i class="icon-arrow-right3 size-24 right"></i>
@ -178,10 +178,10 @@
ng-click="glidera.openTxModal(index.glideraToken, tx)" ng-click="glidera.openTxModal(index.glideraToken, tx)"
class="row collapse last-transactions-content"> class="row collapse last-transactions-content">
<div class="large-3 medium-3 small-3 columns"> <div class="large-3 medium-3 small-3 columns">
<img src="../img/bought.svg" alt="bought" width="39" ng-show="tx.type == 'BUY' && tx.status == 'COMPLETE'"> <img src="img/bought.svg" alt="bought" width="39" ng-show="tx.type == 'BUY' && tx.status == 'COMPLETE'">
<img src="../img/bought-pending.svg" alt="bought" width="33" ng-show="tx.type == 'BUY' && tx.status == 'PROCESSING'"> <img src="img/bought-pending.svg" alt="bought" width="33" ng-show="tx.type == 'BUY' && tx.status == 'PROCESSING'">
<img src="../img/sold.svg" alt="bought" width="39" ng-show="tx.type == 'SELL' && tx.status == 'COMPLETE'"> <img src="img/sold.svg" alt="bought" width="39" ng-show="tx.type == 'SELL' && tx.status == 'COMPLETE'">
<img src="../img/sold-pending.svg" alt="bought" width="33" ng-show="tx.type == 'SELL' && tx.status == 'PROCESSING'"> <img src="img/sold-pending.svg" alt="bought" width="33" ng-show="tx.type == 'SELL' && tx.status == 'PROCESSING'">
</div> </div>
<div class="large-4 medium-4 small-4 columns"> <div class="large-4 medium-4 small-4 columns">

View file

@ -15,10 +15,10 @@
<div class="modal-content fix-modals-touch"> <div class="modal-content fix-modals-touch">
<div class="header-modal bg-gray text-center"> <div class="header-modal bg-gray text-center">
<div class="p20"> <div class="p20">
<img src="../img/bought.svg" alt="bought" width="80" ng-show="tx.type == 'BUY' && tx.status == 'COMPLETE'"> <img src="img/bought.svg" alt="bought" width="80" ng-show="tx.type == 'BUY' && tx.status == 'COMPLETE'">
<img src="../img/bought-pending.svg" alt="bought" width="65" ng-show="tx.type == 'BUY' && tx.status == 'PROCESSING'"> <img src="img/bought-pending.svg" alt="bought" width="65" ng-show="tx.type == 'BUY' && tx.status == 'PROCESSING'">
<img src="../img/sold.svg" alt="bought" width="80" ng-show="tx.type == 'SELL' && tx.status == 'COMPLETE'"> <img src="img/sold.svg" alt="bought" width="80" ng-show="tx.type == 'SELL' && tx.status == 'COMPLETE'">
<img src="../img/sold-pending.svg" alt="bought" width="65" ng-show="tx.type == 'SELL' && tx.status == 'PROCESSING'"> <img src="img/sold-pending.svg" alt="bought" width="65" ng-show="tx.type == 'SELL' && tx.status == 'PROCESSING'">
</div> </div>
<span ng-show="tx.type == 'BUY'">Bought</span> <span ng-show="tx.type == 'BUY'">Bought</span>
<span ng-show="tx.type == 'SELL'">Sold</span> <span ng-show="tx.type == 'SELL'">Sold</span>
@ -28,7 +28,7 @@
</div> </div>
</div> </div>
<ul class="no-bullet size-14 m0"> <ul class="no-bullet size-14 m0">
<li class="line-b p10 oh"> <li class="line-b p10 oh">
<span class="text-gray">Status</span> <span class="text-gray">Status</span>
@ -45,7 +45,7 @@
<li ng-show="tx.price" class="line-b p10 oh"> <li ng-show="tx.price" class="line-b p10 oh">
<span class="text-gray">Exchange rate</span> <span class="text-gray">Exchange rate</span>
<span class="right">{{tx.price|currency:'':2}} {{tx.currency}}/BTC</span> <span class="right">{{tx.price|currency:'':2}} {{tx.currency}}/BTC</span>
</li> </li>
<li ng-show="tx.subtotal" class="line-b p10 oh"> <li ng-show="tx.subtotal" class="line-b p10 oh">
<span class="text-gray">Subtotal</span> <span class="text-gray">Subtotal</span>