Force jump keys to double digits
This commit is contained in:
parent
833a2a8c0f
commit
e5b8f8fffe
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue