Mercurial > zeropaste
view app/assets/javascripts/init.tabs.js @ 104:9825e51ba30f
Minor reorganization.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 11:29:22 +0700 |
parents | a8768ad51926 |
children | a949b71c9afb |
line wrap: on
line source
$(document).ready(function() { 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').click(); } else if (mode == 'markdown') { $('#paste-tabs li:eq(2) a').click(); } });