/* global HVPSettingsHideKey */ /** * Prepares for hiding of the Site Key setting since you cannot modify attributes and such in Moodle. */ (function($) { $(document).ready(function() { if (!window.HVPSettingsHideKey) { return; } var $input = $('#' + HVPSettingsHideKey.input); if (!$input.length) { return; } var placeHolder = $input.val() || HVPSettingsHideKey.value ? HVPSettingsHideKey.placeholder : HVPSettingsHideKey.empty; $input.attr('maxlength', 36) .attr('placeholder', placeHolder) .data('value', HVPSettingsHideKey.value) .val(''); $('