-
The Right Way of Coding AngularJS: How to Organize A Regular Web App Example
- Modular Header and Footer
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> |
NewerOlder