Set vim-hotkeys help panels to same height

This commit is contained in:
Kirill Isakov 2016-04-24 03:02:33 +06:00
parent 3246541bdc
commit 1faf1b645b
2 changed files with 19 additions and 3 deletions

View file

@ -207,11 +207,11 @@ $(document).ready(function() {
var first = i % 2 === 0;
if (first) {
html += '<div class="row">';
html += '<div class="row dflex">';
}
html += '<div class="col-sm-' + (first && lastCategory ? 12 : 6) + '">';
html += '<div class="col-sm-' + (first && lastCategory ? 12 : 6) + ' dflex">';
html += '<div class="panel panel-default">';
html += '<div class="panel panel-default iflex">';
html += '<div class="panel-heading">' + cat[0].cat + '</div>';
html += '<div class="panel-body">';
html += '<ul class="list-unstyled">';