Browse Source

UI-2144: re-send button added, will work once back-end pr is merged

4.0
Jean-Roch Maitre 10 years ago
parent
commit
c192a17090
2 changed files with 6 additions and 5 deletions
  1. +4
    -3
      app.js
  2. +2
    -2
      views/outbound-faxes.html

+ 4
- 3
app.js View File

@ -536,14 +536,15 @@ define(function(require){
var self = this;
self.getFaxDetails('outbound', faxId, function(fax) {
fax.attempts = 0;
self.callApi({
resource: 'faxes.updateOutbound',
data: {
accountId: self.accountId,
faxId: faxId,
data: fax
data: fax,
envelopeKeys: {
action: 'resubmit'
}
},
success: function(data) {
callback && callback(data.data);


+ 2
- 2
views/outbound-faxes.html View File

@ -23,9 +23,9 @@
<i class="fa fa-trash"></i>
</button>
<!-- <button id="resend_faxes" class="monster-button-secondary monster-button-fit margin-left actionable" data-toggle="tooltip" data-placement="top" data-original-title="{{ i18n.fax.actionBar.tooltips.resend }}">
<button id="resend_faxes" class="monster-button-secondary monster-button-fit margin-left actionable" data-toggle="tooltip" data-placement="top" data-original-title="{{ i18n.fax.actionBar.tooltips.resend }}">
<i class="fa fa-mail-forward"></i>
</button> -->
</button>
</div>
</div>


Loading…
Cancel
Save