fix(angular-bootstrap): make IE8 happy

This commit is contained in:
Peter Bacon Darwin 2013-11-11 00:09:15 +00:00
parent fb483d56a7
commit a61b65d01b

View file

@ -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');
}
}