diff options
Diffstat (limited to 'data/js/script.js')
-rw-r--r-- | data/js/script.js | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/data/js/script.js b/data/js/script.js new file mode 100644 index 000000000..e49733b97 --- /dev/null +++ b/data/js/script.js @@ -0,0 +1,60 @@ +(function($) { + + $(function() { + + $(window).bind('hashchange', function(e) { + var hash = window.location.hash; + + $('#highlight_line').remove(); + + if (hash.match(/^#n\d+$/) === null) { + return; + } + + var link = $(hash); + + $('<div id="highlight_line" />').prependTo('.highlight').css({ + top: link.get(0).offsetTop - 10 + parseInt(link.css("padding-top")) + 'px' + }); + }); + + $(window).trigger('hashchange'); + + var lexer_source = []; + for (var key in window.lexers) { + lexer_source.push({ label: window.lexers[key], value: key }); + } + + $('#language').autocomplete({ + source: lexer_source, + select: function(event, ui) { + window.location = window.paste_base + '/' + ui.item.value; + } + }); + + $('#language-toggle').click(function() { + setTimeout(function() { + $('#language').focus(); + }, 0); + }); + + $('[rel="tooltip"]').tooltip({ + placement: 'bottom' + }); + + $('#history-all').bind('change', function() { + $('.delete-history').prop('checked', $(this).is(':checked')); + }); + + $('.modal').on('shown', function(e) { + var modal = $(this); + + modal.css('margin-top', (modal.outerHeight() / 2) * -1) + .css('margin-left', (modal.outerWidth() / 2) * -1); + + return this; + }); + + }); + +})(jQuery); |