$(document).ready(function() { // init privacy policy modal $('.footer p:nth-child(2)').html('All pastes are publicly accessible via the generated URL. View the Privacy Policy for more information.'); $('#privacy-link').click(function(e) { e.preventDefault(); var privacyModal = new bootstrap.Modal(document.getElementById('privacyPolicyModal')); privacyModal.show(); }); // DOM Elements const $editor = $('#editor'); const $viewer = $('#viewer'); const $lineNumbers = $('#line-numbers'); const $themeToggle = $('#theme-toggle'); const $sunIcon = $themeToggle.find('.sun-icon'); const $moonIcon = $themeToggle.find('.moon-icon'); const $saveBtn = $('#save-btn'); const $copyBtn = $('#copy-btn'); const $newBtn = $('#new-btn'); const $notification = $('#notification'); const $languageSelector = $('#language-selector'); const $editorContainer = $('.editor-container'); // Format JSON button const $formatJsonBtn = $('