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
    
  
  
    
  | // [...] | |
| // Custom rule to get dropdowns and the like to display outside of the body | |
| // credits: ScottS on stackoverflow | |
| // source: http://stackoverflow.com/questions/10959068/twitter-bootstrap-accordion-and-button-dropdown-overflow-issue | |
| .accordion-body { | |
| &.in { | |
| &:hover { | |
| overflow: visible; | |
| } | 
  
    
      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
    
  
  
    
  | # [...] | |
| # credits: Piero | |
| # source: http://www.cssbakery.com/2010/07/fixing-firefox-font-face-cross-domain_25.html | |
| AddType application/vnd.ms-fontobject .eot | |
| AddType font/ttf .ttf | |
| AddType font/otf .otf | |
| <FilesMatch "\.(ttf|otf|eot)$"> | |
| <IfModule mod_headers.c> | |
| Header set Access-Control-Allow-Origin "*" | 
  
    
      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
    
  
  
    
  | # [...] | |
| # credits: Mathias Geat | |
| # source: http://ailoo.net/2008/09/disable-layout-and-view-renderer-in-zend-framework/ | |
| $this->_helper->layout()->disableLayout(); | |
| $this->_helper->viewRenderer->setNoRender(true); | 
  
    
      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
    
  
  
    
  | <?php | |
| // binary source: http://code.google.com/p/wkhtmltopdf/ | |
| class HtmlToPdf { | |
| // generator setup | |
| private $converter = 'wkhtmltopdf'; | |
| private $command; | |
| // files | |
| public $html; | 
  
    
      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
    
  
  
    
  | (function( $ ) { | |
| /* | |
| * Carousel functions | |
| * extending bootstrap carousel | |
| * url: http://twitter.github.com/bootstrap/javascript.html#carousel | |
| */ | |
| $.fn.linkToCarousel = function( options ) { | 
  
    
      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
    
  
  
    
  | <form action="/action" method="POST" data-confirmation="Perform this action?" class="pull-right"> | |
| <button type="submit" class="btn btn-danger">Delete</button> | |
| </form> | |
| <div id="confirmation-modal" class="modal fade hide" tabindex="-1" role="dialog"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
| <h3>Confirmation</h3> | |
| </div> | |
| <div class="modal-body"> |