Skip to content

Commit

Permalink
=version number (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansg44 authored May 25, 2020
1 parent 7670d4b commit eab0886
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
visibility: hidden;
}

#footer-row {
.footer-row {
visibility: hidden;
}

Expand Down
9 changes: 7 additions & 2 deletions main.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
</div>
</div>
<!-- Buttons below Handsontable grid -->
<div class="row mt-3" id="footer-row">
<div class="row mt-3 footer-row">
<div class='col col-md-6'>
<div class='input-group mb-3'>
<div class='input-group'>
<div class='input-group-prepend'>
<button class='btn btn-primary' id='add-rows-button' type='submit'>Add</button>
</div>
Expand All @@ -59,6 +59,11 @@
</div>
</div>
</div>
<div class="row mt-3 footer-row">
<div class="col">
<p class="text-right">0.1.0</p>
</div>
</div>
</div>
<!-- Modals -->
<div class="modal" id="clear-data-warning-modal" tabindex="-1" role="dialog">
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const createHot = (data) => {
licenseKey: 'non-commercial-and-evaluation',
afterRender: () => {
$('#header-row').css('visibility', 'visible');
$('#footer-row').css('visibility', 'visible');
$('.footer-row').css('visibility', 'visible');
// Bit of a hackey way to add classes to secondary headers
$('.secondary-header-text').each((_, e) => {
const $cellElement = $(e).closest('th');
Expand Down

0 comments on commit eab0886

Please sign in to comment.