We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d09ff9 + 254451a commit 2f9d9f5Copy full SHA for 2f9d9f5
modules/story-budget/lib/story-budget.js
@@ -1,17 +1,12 @@
1
// Story Budget specific JS, assumes that ef_date.js has already been included
2
3
jQuery(document).ready(function($) {
4
- // Hide all post details when directed
5
- $("#toggle_details").on( 'click', function() {
6
- $(".post-title > p").toggle('hidden');
7
- });
8
-
9
// Make print link open up print dialog
10
$("#print_link").on( 'click', function() {
11
window.print();
12
return false;
13
});
14
+
15
// Hide a single section when directed
16
$("h3.hndle,div.handlediv").on( 'click', function() {
17
$(this).parent().children("div.inside").toggle();
0 commit comments