* Creates tab html * * @param {Integer} tabId
(tabId)
| 66 | */ |
| 67 | |
| 68 | static generateTabHeaderTemplate(tabId) { |
| 69 | return ` |
| 70 | <li data-tab="${tabId}"> |
| 71 | <a href="#tab-${tabId}"> </a> |
| 72 | <span class="ui-icon ui-icon-close" role="presentation">Remove Tab</span> |
| 73 | </li> |
| 74 | ` |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Generate tab content html |