Skip to content

Commit

Permalink
Merge pull request #128 from labboy0276/master
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Aug 2, 2014
2 parents 5539312 + 1c4ed26 commit 15e1994
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ files.
/CURRENT-THEME_bootstrap/js/bootstrap.min.js
```

### Upgrading Bootstrap to 3.2
If you have a Custom Bootstrap library that is older than 3.2 you may not have the URL to rebuild the library. With 3.2, this is now added into the json file. However, it can be done with older bootstrap json files by following [this StackOverflow post](http://stackoverflow.com/questions/20384330/reload-bootstrap-customization).

#### Important

The only actual requirement here is that either css/bootstrap.css or
Expand Down
4 changes: 2 additions & 2 deletions templates/views/views-view-table.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
<?php endif; ?>
<tbody>
<?php foreach ($rows as $row_count => $row): ?>
<tr <?php if ($row_classes[$row_count]) { print 'class="' . implode(' ', $row_classes[$row_count]) .'"'; } ?>>
<tr <?php if (isset($row_classes[$row_count])) { print 'class="' . implode(' ', $row_classes[$row_count]) .'"'; } ?>>
<?php foreach ($row as $field => $content): ?>
<td <?php if ($field_classes[$field][$row_count]) { print 'class="'. $field_classes[$field][$row_count] . '" '; } ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>>
<td <?php if (isset($field_classes[$field][$row_count])) { print 'class="'. $field_classes[$field][$row_count] . '" '; } ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>>
<?php print $content; ?>
</td>
<?php endforeach; ?>
Expand Down

0 comments on commit 15e1994

Please # to comment.