Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(tabs): support heading with :
Browse files Browse the repository at this point in the history
- Support `uib:tab-heading`

Closes #5590
Fixes #5568
  • Loading branch information
wesleycho committed Mar 6, 2016
1 parent aac0d2b commit a945dd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tabs/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ angular.module('ui.bootstrap.tabs', [])
node.hasAttribute('x-uib-tab-heading') ||
node.tagName.toLowerCase() === 'uib-tab-heading' ||
node.tagName.toLowerCase() === 'data-uib-tab-heading' ||
node.tagName.toLowerCase() === 'x-uib-tab-heading'
node.tagName.toLowerCase() === 'x-uib-tab-heading' ||
node.tagName.toLowerCase() === 'uib:tab-heading'
);
}
});

0 comments on commit a945dd2

Please sign in to comment.