Last active
August 29, 2015 13:57
-
-
Save damc-dev/9672132 to your computer and use it in GitHub Desktop.
Custom Bookmarklets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
- Description: Toggle Hide/Show Laravel Docs Side Bar Navigation | |
- | |
- Created date: 04/20/2014 | |
- | |
- Created by: David McElligott | |
- [email protected] | |
--> | |
<html> | |
<a href="javascript:(function () {if (document.documentElement.contentEditable === false || document.designMode === 'off') {document.body.contentEditable='true';document.designMode='on';$('#docs').hide();$('#docs-content').css('float', 'left');void 0;} else if (document.documentElement.contentEditable === true || document.designMode === 'on') {document.body.contentEditable='false';document.designMode='off';$('#docs').show();$('#docs-content').css('float', 'right');void 0;}})();">HideBar</a> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment