Merge branch '4.3' into 4.4

This commit is contained in:
Robbie Averill 2017-08-22 10:39:05 +12:00
commit c5d8bcf5cf

View File

@ -3,34 +3,31 @@
*/ */
(function($) { (function($) {
$(document).ready(function () { $.entwine('ss', function($) {
var sendPlain = $('input[name="SendPlain"]');
var recipient = { var recipient = {
// Some fields are only visible when HTML email are being sent. // Some fields are only visible when HTML email are being sent.
updateFormatSpecificFields: function () { updateFormatSpecificFields: function () {
var sendPlainChecked = sendPlain.is(':checked'); var sendPlainChecked = $('input[name="SendPlain"]').is(':checked');
$(".field.toggle-html-only")[sendPlainChecked ? 'hide' : 'show'](); $('.field.toggle-html-only')[sendPlainChecked ? 'hide' : 'show']();
$(".field.toggle-plain-only")[sendPlainChecked ? 'show' : 'hide'](); $('.field.toggle-plain-only')[sendPlainChecked ? 'show' : 'hide']();
} }
}; };
$.entwine('udf.recipient', function ($) { $('#Form_ItemEditForm .EmailRecipientForm').entwine({
$('#Form_ItemEditForm').entwine({
onmatch: function () { onmatch: function () {
recipient.updateFormatSpecificFields(); recipient.updateFormatSpecificFields();
}, },
onunmatch: function () { onunmatch: function () {
this._super(); this._super();
} }
}); });
sendPlain.entwine({ $('#Form_ItemEditForm .EmailRecipientForm input[name="SendPlain"]').entwine({
onchange: function () { onchange: function () {
recipient.updateFormatSpecificFields(); recipient.updateFormatSpecificFields();
} }
}); });
}); });
});
}(jQuery)); }(jQuery));