Force jump keys to double digits

This commit is contained in:
Lorenz Hübschle-Schneider 2017-03-18 16:20:08 +01:00
parent 833a2a8c0f
commit e5b8f8fffe

View file

@ -282,7 +282,7 @@ npm run build-electron-{windows, darwin, linux}</pre>
<a ng-click="setActiveBuffer(buffer.id)" title="{{ buffer.fullName }}" href="#">
<span class="badge pull-right" ng-class="{'danger': buffer.notification}" ng-bind="buffer.notification || buffer.unread"></span>
<span class="buffer-quick-key">{{ buffer.$quickKey }}</span>
<span class="buffer-jump-key">{{ buffer.$jumpKey }}</span>
<span class="buffer-jump-key">{{ ("0" + buffer.$jumpKey).slice(-2) }}</span>
<span class="buffername">{{ buffer.trimmedName || buffer.fullName }}</span>
</a>
</li>