Mercurial > zeropaste
view app/assets/javascripts/init.tabs.js @ 103:a8768ad51926
Allows hash-based onload tab switch.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 11:28:11 +0700 |
parents | 90b59418828a |
children | 9825e51ba30f |
line wrap: on
line source
$(document).ready(function() { raw = $('#plain > pre').text(); $('#highlight > pre').text(raw); $('#markdown > div').html(marked(raw)); mode = window.location.hash.substr(1); if (mode == 'highlight') { $('#paste-tabs li:eq(1) a').click(); } else if (mode == 'markdown') { $('#paste-tabs li:eq(2) a').click(); } window.prettyPrint && prettyPrint(); });