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
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
jj fix | |
# Get the list of mutable branches that are reachable from the current branch | |
# (i.e. that are between us and main). | |
branches=$(jj branch list -r 'reachable(@,mutable())' --template 'name ++ "\n"') |
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
angular.module('jqTimeEntry', []) | |
.directive('jqTimeEntry', function () { | |
return { | |
scope: {timeModel: "="}, | |
link: function (scope, element, attrs) { | |
$(element).timeEntry({show24Hours: true, ampmNames: ['a', 'p'], | |
ampmPrefix: ' ', useMouseWheel: true, | |
showSeconds: false, timeSteps: [1, 1, 1], | |
spinnerImage: '' | |
}).change(function () { |