-
-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
<div ng-controller="EditRecipCtrl" class="crm-mailing-recipients-row"> | ||
<div style="float: right;"> | ||
<div class="crmMailing-recip-est"> | ||
<a href="" ng-click="previewRecipients()" title="{{ts('Preview a List of Recipients')}}">{{getRecipientsEstimate()}}</a> | ||
</div> | ||
</div> | ||
<input | ||
type="hidden" | ||
crm-mailing-recipients | ||
ng-model="mailing.recipients" | ||
crm-mandatory-groups="crmMailingConst.groupNames | filter:{is_hidden:1}" | ||
crm-ui-id="{{crmMailingBlockRecipients.id}}" | ||
name="{{crmMailingBlockRecipients.name}}" | ||
ng-required="true"/> | ||
<a crm-icon="fa-wrench" ng-click="editOptions(mailing)" class="crm-hover-button" title="{{ts('Edit Recipient Options')}}"></a> | ||
ng-required="true" /> | ||
<a crm-icon="fa-wrench" ng-click="editOptions(mailing)" class="crm-hover-button" title="{{ts('Edit Recipient Options')}}"></a> | ||
<div> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
monishdeb
Author
Member
|
||
<button ng-click="rebuildRecipients()" class="ng-binding crm-button" title="{{ts('Preview a List of Recipients')}}">{{getRecipientsEstimate()}}</button> | ||
<a ng-click="previewRecipients()" class="crm-hover-button" title="{{ts('Click to refresh recipient count')}}"> | ||
<span class="{{((outdated || recipient == 0) ? 'crmMailing-outdated-count' : 'crmMailing-latest-count')}}"> | ||
{{getRecipientCount()}} | ||
</span> | ||
</a> | ||
</div> | ||
</div> |
@monishdeb can you add the class="crmMailing-recip-est" in here which you removed from line 3 (7a646a0#diff-998154734e54e44344b0ac767fc62e70L3)
It's essential that we keep such classes as it is while modifying as it can broke other extensions or scripts targeting the code