This file contains 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
$(document).ready(function() { | |
$('.labels-inside input[type="text"]').add('.labels-inside textarea').each(function() { | |
var label = $(this).prev('label[for="'+$(this)[0].id+'"]').hide().html(); | |
$(this).focus(function() { | |
if ($(this).val() == label) { | |
$(this).val('').removeClass('description'); | |
} | |
}); | |
$(this).blur(function() { |
This file contains 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
// Modal Window // | |
$('#dialog').hide; | |
//select all the a tag with name equal to modal | |
$('a[name=modal]').click(function(e) { | |
$('#dialog').show; | |
//Cancel the link behavior | |
e.preventDefault(); | |
var divid = "#dialog"; | |
var lnk = $(this).attr('href'); | |
var title = $(this).attr('title'); |
This file contains 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
[color] | |
diff = auto | |
status = auto | |
branch = auto |
This file contains 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
$('.button.dialog').click(function() { | |
$('#dialog').load(this.href, function() { | |
$('#dialog .close').click(function() { | |
$('#dialog').hide().html(''); | |
return false; | |
}); | |
$(document).keyup(function(e) { | |
if (e.keyCode == 27) { $('#dialog .close').click(); } // esc | |
}); |
This file contains 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
usage: git flow <subcommand> | |
Available subcommands are: | |
init Initialize a new git repo with support for the branching model. | |
feature Manage your feature branches. | |
release Manage your release branches. | |
hotfix Manage your hotfix branches. | |
Try 'git flow <subcommand> help' for details. |
This file contains 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
--color | |
--format nested |
This file contains 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
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
jQuery.fn.exists = function() { | |
return (this.length > 0) | |
} | |
jQuery.fn.doAwesomeScrollingThing = function() { | |
return this.each(function() { | |
$(this).click(function(event) { | |
target = $('#' + this.href.split('#')[1]) |
This file contains 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
#lis_login { | |
position: absolute; | |
top: -195px; | |
right: 18px; | |
} |
This file contains 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
css/960_6col_grid.css:font-size: 0px; | |
css/forms.css:font-size: 1.2em; | |
css/forms.css:font-size: .75em; | |
css/forms.css:font-size: 88%; | |
css/forms.css:font-size: 75%; | |
css/print.css:font-size: 115%; | |
css/print.css:font-size: 75%; | |
css/print.css:font-size: .9em; | |
css/print.css:font-size: .9em; | |
css/print.css:font-size: 1.1em; |