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
var httpResponseQueue = Ember.A(); | |
var checkQueueInterval = null; | |
var checkQueue = function() { | |
for (var i = 0; i < httpResponseQueue.length; i++) { | |
var queuedItem = httpResponseQueue[i]; | |
var found = fakehr.match(queuedItem.verb.toUpperCase(), queuedItem.url); | |
if (found) { | |
found.respond(queuedItem.status || 200, {'content-type': 'application/json'}, queuedItem.body); |
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 __fish_hg_prompt --description 'Promp function for Mercurial' | |
# Colors | |
set -l color_branch (set_color magenta) | |
set -l color_cleanslate (set_color green) | |
set -l color_added (set_color green) | |
set -l color_modified (set_color blue) | |
set -l color_removed (set_color red) | |
set -l color_unknown (set_color magenta) | |
set -l color_deleted (set_color cyan) | |
set -l color_renamed (set_color yellow) |
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 id="template" type="text/x-jquery-tmpl"> | |
<h1>Settings</h1> | |
{{each(name,setting) settings}} | |
<h2>${name}</h2> | |
{{each(index,value) ['low','high']}} | |
<input type="radio" name="${name}" value="${value}" {{if setting === value}}checked{{/if}}> ${value} | |
{{/each}} | |
{{/each}} | |
</script> |