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
    
  
  
    
  | { | |
| "vars": { | |
| "@gray-darker": "lighten(#000, 13.5%)", | |
| "@gray-dark": "lighten(#000, 20%)", | |
| "@gray": "lighten(#000, 33.5%)", | |
| "@gray-light": "lighten(#000, 46.7%)", | |
| "@gray-lighter": "lighten(#000, 93.5%)", | |
| "@brand-primary": "#00BCF2", | |
| "@brand-success": "#5cb85c", | |
| "@brand-info": "#5bc0de", | 
  
    
      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
    
  
  
    
  | if (Uri.IsWellFormedUriString(returnUrl, UriKind.Relative)) | |
| { | |
| return Redirect(returnUrl); | |
| } | 
  
    
      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
    
  
  
    
  | $('#guide').on('mouseover', 'span.pointer', function () { | |
| var maxWidth = 200; | |
| var ratio = 1; | |
| var top = $(this).data('position-top'); | |
| var left = $(this).data('position-left'); | |
| var pointerUrl = $(this).data('pointer-url'); | |
| var pointerType = $(this).data('pointer-type'); | |
| var imageUrl = $(this).data('image-url'); | |
| var width = $(this).data('width'); | |
| var height = $(this).data('height'); | 
  
    
      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
    
  
  
    
  | for d in * | |
| do | |
| echo "Repository: $d" | |
| (cd $d && git pull -r) | |
| done |