Browse Source

wallet settings section base added

master
Satinder Grewal 8 years ago
parent
commit
9113109167
  1. 2
      assets/scripts/dashboard.js
  2. 25
      assets/scripts/sidebar.js
  3. 0
      assets/scripts/walletsettings.js
  4. 19
      index.html

2
assets/scripts/dashboard.js

@ -211,7 +211,7 @@ var Dashboard = function() {
clearInterval(ExecuteShowCoinHistory);
console.log('=> No wallet logged in. No need to Run History.');
} else {
ShowCoinHistory(historyvalues);
//ShowCoinHistory(historyvalues);
//console.log('wallet widget refereshed (every 1 seconds)');
//Show Coin Progress Bars
ShowCoinProgressBar(AllcoinsDataOutput[value][index]);

25
assets/scripts/sidebar.js

@ -4,10 +4,13 @@ $(document).ready(function() {
$('#section-dashboard').show();
$('#header-dashboard').show();
$('#section-easydex').hide();
$('#section-iguana-wallet-settings').hide();
$('#section-about-iguana').hide();
$('#nav-dashboard').removeClass( "" ).addClass( "active open" );
$('#nav-easydex').removeClass( " active open" ).addClass( "" );
$('#nav-iguana-wallet-settings').removeClass( " active open" ).addClass( "" );
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" );
$(".header-easydex-section").text("Dashboard")
});
@ -15,10 +18,13 @@ $('#nav-dashboard').on('click', function() {
$('#section-dashboard').show();
$('#header-dashboard').show();
$('#section-easydex').hide();
$('#section-iguana-wallet-settings').hide();
$('#section-about-iguana').hide();
$('#nav-dashboard').removeClass( "" ).addClass( "active open" );
$('#nav-easydex').removeClass( " active open" ).addClass( "" );
$('#nav-iguana-wallet-settings').removeClass( " active open" ).addClass( "" );
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" );
$(".header-easydex-section").text("Dashboard")
});
$('#nav-easydex').on('click', function() {
@ -26,18 +32,37 @@ $('#nav-easydex').on('click', function() {
$('#header-dashboard').hide();
$('#section-easydex').show();
$('#section-about-iguana').hide();
$('#section-iguana-wallet-settings').hide();
$('#nav-dashboard').removeClass( " active open" ).addClass( "" );
$('#nav-easydex').removeClass( "" ).addClass( "active open" );
$('#nav-iguana-wallet-settings').removeClass( " active open" ).addClass( "" );
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" );
$(".header-easydex-section").text("EasyDEX")
});
$('#nav-about-iguana').on('click', function() {
$('#section-dashboard').hide();
$('#header-dashboard').hide();
$('#section-easydex').hide();
$('#section-iguana-wallet-settings').hide();
$('#section-about-iguana').show();
$('#nav-dashboard').removeClass( " active open" ).addClass( "" );
$('#nav-easydex').removeClass( " active open" ).addClass( "" );
$('#nav-iguana-wallet-settings').removeClass( " active open" ).addClass( "" );
$('#nav-about-iguana').removeClass( "" ).addClass( "active open" );
$(".header-easydex-section").text("About Iguana")
});
$('#nav-iguana-wallet-settings').on('click', function() {
$('#section-dashboard').hide();
$('#header-dashboard').hide();
$('#section-easydex').hide();
$('#section-iguana-wallet-settings').show();
$('#section-about-iguana').hide();
$('#nav-dashboard').removeClass( " active open" ).addClass( "" );
$('#nav-easydex').removeClass( " active open" ).addClass( "" );
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" );
$('#nav-iguana-wallet-settings').removeClass( "" ).addClass( "active open" );
$(".header-easydex-section").text("Wallet Settings")
});

0
assets/scripts/walletsettings.js

19
index.html

@ -296,6 +296,12 @@
<span class="site-menu-title">EasyDEX</span>
</a>
</li>
<li class="site-menu-item" id="nav-iguana-wallet-settings">
<a class="animsition-link" href="javascript:;">
<i class="site-menu-icon fa-wrench" aria-hidden="true"></i>
<span class="site-menu-title">Wallet Settings</span>
</a>
</li>
<li class="site-menu-item" id="nav-about-iguana">
<a class="animsition-link" href="javascript:;">
<i class="site-menu-icon fa-info-circle" aria-hidden="true"></i>
@ -310,10 +316,10 @@
<!-- BEGIN DASHBOARD CONTENT BODY -->
<!-- Example With Stats -->
<div class="page-header page-header-bordered">
<div class="page-header page-header-bordered header-easydex">
<h1 class="page-title">EasyDEX</h1>
<ol class="breadcrumb">
<li>Dashboard</li>
<li class="header-easydex-section">Dashboard</li>
<!--<li class="active">You are Here</li>-->
</ol>
<div class="page-header-actions">
@ -535,6 +541,14 @@
<p>Page content goes here</p>
</div>
<!-- END ABOUT SUPERNET IGUANA CONTENT BODY -->
<!-- BEGIN IGUANA WALLET SETTINGS CONTENT BODY -->
<div class="page-content" id="section-iguana-wallet-settings">
<h2>Iguana Walet Settings</h2>
<p>Page content goes here</p>
</div>
<!-- END IGUANA WALLET SETTINGS CONTENT BODY -->
<div class="progress-bar progress-bar-info progress-bar-striped active" aria-valuemin="0" aria-valuemax="100" style="width: 50%" aria-valuenow="60" role="progressbar"><span class="progress-label"></span></div>
</div>
<!-- End Page -->
@ -596,6 +610,7 @@
<script src="assets/scripts/dashboard.js"></script>
<script src="assets/scripts/coinwallets.js"></script>
<script src="assets/scripts/sidebar.js"></script>
<script src="assets/scripts/walletsettings.js"></script>
<script>
(function(document, window, $) {
'use strict';

Loading…
Cancel
Save