function markChangedFields() {
$('[data-default]:not([data-non-default-tracking="0"])').each(function () {
var v = '';
+
$(this).find('[name="' + $(this).data('name') + '"]').each(function () {
if ($(this).is(':checkbox') && !$(this).prop('checked')) {
return false;
}
+
v = $(this).val();
});
+ if($(this).attr('bp-field-type') === "external_path") {
+ v = $(this).find('[name="' + $(this).data('name') + '[server]"]').val()
+ }
+
if (v == $(this).data('default')) {
$(this).removeClass('non-default');
} else {