Skip to content

Commit

Permalink
Merge pull request #4 from samthejarvis/master
Browse files Browse the repository at this point in the history
FIX: Method details now show onclick
  • Loading branch information
chillu committed May 29, 2013
2 parents 5e99dbe + f574d19 commit af926a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/apigen/templates/js/main.js
Expand Up @@ -145,7 +145,7 @@ $(function() {
.click(function() {
var $this = $(this);
$('.short', $this).hide();
$('.detailed', $this).show();
$('.detailed', $this).show().css("visibility", "visible");
});
}

Expand Down
2 changes: 1 addition & 1 deletion htdocs/master/resources/combined.js
Expand Up @@ -1127,7 +1127,7 @@ $(function() {
.click(function() {
var $this = $(this);
$('.short', $this).hide();
$('.detailed', $this).show();
$('.detailed', $this).show().css("visibility", "visible");
});
}

Expand Down

0 comments on commit af926a4

Please sign in to comment.