Browse Source

send form steps code updated

master
Satinder Grewal 8 years ago
parent
commit
d84f0d56a6
  1. 11
      assets/scripts/dashboard.js
  2. 6
      index.html

11
assets/scripts/dashboard.js

@ -230,6 +230,11 @@ var Dashboard = function() {
var tmp_send_total_amount = $('#edexcoin_total_value').text();
$('#edexcoin-send-screen').hide();
$('#edexcoin-send-confirm-screen').show();
$('#edexcoin_send_step_1').removeClass( " current" ).addClass( "" );
$('#edexcoin_send_step_2').removeClass( "" ).addClass( " current" );
$('#edexcoin_send_step_3').removeClass( " current" ).addClass( "" );
NProgress.done();
}
});
@ -261,6 +266,9 @@ var Dashboard = function() {
$('#edexcoin-send-confirm-screen').hide();
$('#edexcoin-send-txdetails-screen').show();
edexcoin_send_form_validator.resetForm();
$('#edexcoin_send_step_1').removeClass( " current" ).addClass( "" );
$('#edexcoin_send_step_2').removeClass( " current" ).addClass( "" );
$('#edexcoin_send_step_3').removeClass( "" ).addClass( " current" );
});
$('#edexcoin_send_coins_back_btn').click(function() {
@ -271,6 +279,9 @@ var Dashboard = function() {
var tmp_send_to_addr = '';
var tmp_send_total_amount = '';
edexcoin_send_form_validator.resetForm();
$('#edexcoin_send_step_1').removeClass( "" ).addClass( " current" );
$('#edexcoin_send_step_2').removeClass( " current" ).addClass( "" );
$('#edexcoin_send_step_3').removeClass( " current" ).addClass( "" );
});
$('#edexcoin_send_coins_anothertx_btn').click(function() {
$( "#edexcoin_send_coins_back_btn" ).trigger( "click" );

6
index.html

@ -807,21 +807,21 @@
<!-- EasyDEX Panel send -->
<!-- Sending EDEXCoin Steps Default -->
<div class="steps row" style="margin-top: 10px;">
<div class="step col-md-4 current">
<div class="step col-md-4 current" id="edexcoin_send_step_1">
<span class="step-number">1</span>
<div class="step-desc">
<span class="step-title">Fill Send Form</span>
<p>Fill sending transaction details</p>
</div>
</div>
<div class="step col-md-4">
<div class="step col-md-4" id="edexcoin_send_step_2">
<span class="step-number">2</span>
<div class="step-desc">
<span class="step-title">Confirming</span>
<p>Confirm if detials are correct</p>
</div>
</div>
<div class="step col-md-4">
<div class="step col-md-4" id="edexcoin_send_step_3">
<span class="step-number">3</span>
<div class="step-desc">
<span class="step-title">Processing Tx</span>

Loading…
Cancel
Save