Sha256: 1de1f9368132662d5467ba2fb021a38c82fb3440fdb0187930adfb479bc18e4b
Contents?: true
Size: 522 Bytes
Versions: 18
Compression:
Stored size: 522 Bytes
Contents
$(document).ready(function() { // Set the title of this page as the index title if (parent && parent.document) { $('html head title', parent.document).text($('html head title').text()); } // Setup the view source links $("a.source_link").toggle( function() { $(this).text('Hide source'); $(this).parent().next().show(); }, function() { $(this).text('View source'); $(this).parent().next().hide(); } ); });
Version data entries
18 entries across 18 versions & 7 rubygems