Skip to content

Commit

Permalink
Added toggle to show or hide link box
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhall committed Apr 21, 2015
1 parent 5e1d3b6 commit 5e43ead
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ var easycopy = {
color: red !important;\
}\
</style>');

// Show/hide the link box if we want
$('#middlebar a:last').after('<button id="ezc-linkToggle">Link Box</button>');
$('#ezc-linkToggle').click(function(e)
{
$('#ezc-textcontainer').toggle('fast');
});
},

handleClick: function(event)
Expand Down

0 comments on commit 5e43ead

Please sign in to comment.