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
app.directive('grid', function() { | |
return { | |
scope: { | |
panels: "=" | |
}, | |
templateUrl: 'partials/templates/grid.html', | |
link: function($scope, element, attributes ) { | |
} | |
} | |
}); |
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
function Chat(notifier, tabStatus) { | |
this.notifier = notifier; | |
this.tab_status = tabStatus; | |
}; | |
_.extend(Chat.prototype, { | |
init: function() { | |
this.join(); | |
this.open(); | |
this.leave(); |
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
static ICriterion BuildCriteria(params MatchableClientParams[] clientParams) | |
{ | |
var result = Restrictions.Disjunction(); | |
foreach (var parameters in clientParams) | |
{ | |
var parameters1 = parameters; | |
var criteria = parameters1.BuildCriteria(); | |
result.Add(criteria); |
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
alias s='git s' | |
alias d='git d' | |
alias av='git av' | |
alias cm='git cm' | |
alias cod='git cod' | |
alias com='git com' | |
alias co='git co' | |
alias warmup='"/C/Program Files/warmup/warmup.exe"' | |
function merge { git checkout ${1:-master}; git merge ${2:-dev}; git checkout ${2:-dev}; } |