Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(angular-bootstrap): make IE8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Nov 11, 2013
1 parent fb483d5 commit a61b65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/components/angular-bootstrap/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ directive.table = function() {
return {
restrict: 'E',
link: function(scope, element, attrs) {
if (!attrs.class) {
if (!attrs['class']) {
element.addClass('table table-bordered table-striped code-table');
}
}
Expand Down

0 comments on commit a61b65d

Please sign in to comment.