Sha256: cf21dfc763605c5d3678f44fdc984ac357e0eef2c59d40fe0e3fa6f72745f75a
Contents?: true
Size: 538 Bytes
Versions: 36
Compression:
Stored size: 538 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 $(".section.source 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
36 entries across 23 versions & 9 rubygems