(function($){
'use strict';
$(document).ready(function($){
if($('.extra-terms .must-open-url').length > 0){
$(document).on('click', '.extra-terms .must-open-url .terms-url', function (){
$(this).closest('label').find('.input-checkbox:disabled').prop('disabled', false);
console.log($(this));
});
}});
})(jQuery);