/** * Sticky Notes pastebin * @ver 0.3 * @license BSD License - www.opensource.org/licenses/bsd-license.php * * Copyright (c) 2012 Sayak Banerjee * All rights reserved. Do not remove this copyright notice. */ var IsIe = (navigator.appName.indexOf("Microsoft") >= 0); var privateChecked = false, captured = false; // Startup function $(document).ready(function() { // Disable auto complete $('#paste_form').attr('autocomplete', 'off'); // Remove dotted lines around links $('a').click(function() { this.blur(); }); // Remove dotted line for drop menus $('select').change(function() { this.blur(); }); // Check if private box is checked if ($('#paste_private').is(':checked')) { privateChecked = true; } else { privateChecked = false; } $('#paste_private').click(function() { if ($(this).is(':checked')) { privateChecked = true; } else { privateChecked = false; } }); // Update private checkbox if password is entered setInterval(function() { if ($('#paste_password').val() != '') { $('#paste_private').attr('checked', true); captured = true; } else if (captured && $('#paste_password').val() == '') { $('#paste_private').attr('checked', privateChecked); captured = false; } }, 100); // Fetch author and language values from cookies var author = $.cookie('stickynotes_author'); var language = $.cookie('stickynotes_language'); var index = -1; if (author != null) { $('#paste_user').val(author); } for (i = 1; i <= 10; i++) { var $option = $('#paste_lang option:nth-child(' + i.toString() + ')'); if ($option.attr('value') == language) { index = i - 1; } } if (language != null && index < 0) { $('#paste_lang').val(language); } else if (language != null) { $('#paste_lang').get(0).selectedIndex = index; } // Insert tab in the code box $('#paste_data').keydown(function (e) { if (e.keyCode == 9) { var myValue = "\t"; var startPos = this.selectionStart; var endPos = this.selectionEnd; var scrollTop = this.scrollTop; this.value = this.value.substring(0, startPos) + myValue + this.value.substring(endPos,this.value.length); this.focus(); this.selectionStart = startPos + myValue.length; this.selectionEnd = startPos + myValue.length; this.scrollTop = scrollTop; e.preventDefault(); } }); // Alias textbox functions var defaultUser = $('#paste_user_default').html(); $('#paste_user') .click(function() { if ($(this).val() == defaultUser) { $(this).val(''); } }) .focusout(function() { if ($(this).val().length == 0) { $(this).val(defaultUser); } }); // Toggle code wrapping $('#wrap_toggle').click(function() { var isWrapped = $('.codewrap div').css('white-space') != 'nowrap'; if (isWrapped) { $('.codewrap div').css('white-space', 'nowrap'); } else { $('.codewrap div').css('white-space', 'inherit'); } return false; }); // Remove php geshi inline css in code area $(".codewrap ol li").removeAttr("style"); $(".codewrap_small ol li").removeAttr("style"); });