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

Commit

Permalink
remove headings (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
lc512k committed Apr 5, 2017
1 parent f2aabb6 commit 8c97d8f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/n-ui/header/partials/meganav/articlelist.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="o-header__mega-column o-header__mega-column--articles" data-trackable="popular">
<h3 class="o-header__mega-heading">{{title}}</h3>
<div class="o-header__mega-heading">{{title}}</div>
<div class="o-header__mega-content">
<ul class="o-header__mega-list">
{{#each data}}
Expand Down
2 changes: 1 addition & 1 deletion components/n-ui/header/partials/meganav/sectionlist.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="o-header__mega-column o-header__mega-column--subsections" data-trackable="sections">
<h3 class="o-header__mega-heading">{{title}}</h3>
<div class="o-header__mega-heading">{{title}}</div>
<div class="o-header__mega-content">
<ul class="o-header__mega-list">
{{#each data}}
Expand Down
2 changes: 1 addition & 1 deletion components/n-ui/tour-tip/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = class TourTip extends React.Component {
{ className: 'tour-tip__text' },
this.renderTourLink(data),
React.createElement(
'h2',
'div',
{ className: 'tour-tip__standout' },
data.content.title
),
Expand Down
2 changes: 1 addition & 1 deletion components/n-ui/tour-tip/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<a href="/tour" class="tour-tip__link" data-trackable="tour-link">New hints and tips</a>
</p>
{{/if}}
<h2 class="tour-tip__standout">{{data.content.title}}</h2>
<div class="tour-tip__standout">{{data.content.title}}</div>
{{#if data.content.body}}
<p class="tour-tip__body">{{{data.content.body}}}</p>
{{/if}}
Expand Down
2 changes: 1 addition & 1 deletion demo/views/default.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h2 data-n-tooltip-content="#tooltip-content" data-n-tooltip-show-on="load">this text should have a tool tip</h2>
<div data-n-tooltip-content="#tooltip-content" data-n-tooltip-show-on="load">this text should have a tool tip</div>

<div id="tooltip-content" style="display: none">
<p>Here is some content in a tool tip. It can be <b>bold</b> <i>italic</i> or even have a <a href="https://www.ft.com">link</a></p>
Expand Down

0 comments on commit 8c97d8f

Please sign in to comment.