Mercurial > zeropaste
view app/assets/javascripts/init.tabs.js @ 111:a92e732a2caa
Correct way to switch tab.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 12:35:33 +0700 |
parents | e8c632b0eb80 |
children | 2b1041e8c35e |
line wrap: on
line source
$(document).ready(function() { if ($('#paste-tabs').length == 1) { raw = $('#plain pre').text(); $('#highlight pre').text(raw); window.prettyPrint && prettyPrint(); $('#markdown div').html(marked(raw)); mode = window.location.hash.substr(1); if (mode == 'highlight') { $('#paste-tabs li:eq(1) a').tab('show'); } else if (mode == 'markdown') { $('#paste-tabs li:eq(2) a').tab('show'); } $('#tab-resize ul a').click(function() { var size = $(this).data('size'), paste = $('#paste'), title = $('#tab-resize a.btn'); title.html(title.html().replace(/(Width: ).*\n/, '$1' + size + '\n')); if (size == 'full') { paste.css('width', ''); } else { paste.css('width', size); } }); } });