Browse Source

fixed bug where rows were being placed outside of the table

bmallred 10 years ago
parent
commit
868a658242
1 changed files with 3 additions and 3 deletions
  1. 3 3
      public/js/grassfed.js

+ 3 - 3
public/js/grassfed.js

@ -140,9 +140,9 @@ $(function () {
140 140
                    .append('<div class="panel-heading"><h3 class="panel-title"><a data-toggle="collapse" data-parent="#history" href="#' + momentDate.replace(/\s+/g, '-') + '">' + momentDate + '</a></h3></div>')
141 141
                    .append($('<div id="' + momentDate.replace(/\s+/g, '-') + '" class="panel-collapse">')
142 142
                        .append($('<div class="panel-body">')
143
                            .append('<table class="class">'))));
143
                            .append('<table class="table">'))));
144 144
145
            panelBody = $('h3.panel-title:contains("' + momentDate + '")').parents('div.panel').find('div.panel-body');
145
            panelBody = $('h3.panel-title:contains("' + momentDate + '")').parents('div.panel').find('.table');
146 146
        }
147 147
148 148
        $(panelBody).prepend(
@ -246,7 +246,7 @@ $(function () {
246 246
                    }
247 247
248 248
                    if (panel) {
249
                        $(panel).find('div.panel-body').append(moments);
249
                        $(panel).find('.table').append(moments);
250 250
                        $(history).append(panel);
251 251
                    }
252 252