Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes the links on clayui.com and more | Fixes #1070 #1071

Merged
merged 3 commits into from
Aug 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can call Clay components in your SOY templates the same way you would call a
<div class="alert alert-warning" role="alert">
<span class="alert-indicator">
<svg aria-hidden="true" class="lexicon-icon lexicon-icon-warning-full">
<use xlink:href="/vendor/lexicon/icons.svg#warning-full"></use>
<use xlink:href="/images/icons/icons.svg#warning-full"></use>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Icon doesn't appear

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey @carloslancha, this is strange, this appears to me. I have tested in production and development environment.

screen shot 2018-08-08 at 10 19 55

Could you check again?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, it's working, don't know why it didn't appear before. Thx

</svg>
</span>
<strong class="lead">Warning:</strong> Make sure you import the Clay component where you want to use it.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const badge = new ClayBadge(

Once added to your page, the Clay components are accessible globally on the page with all components.

> See [CDN Links](/docs/getting-started/cdn-links.html).
> See [Introduction](/docs/getting-started/introduction.html).

```html
<div id="element"></div>
Expand Down
2 changes: 1 addition & 1 deletion clayui.com/content/docs/getting-started/web-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Clay is highly flexible, so you can use the components in different applications

## Installation

You can start by choosing how to import your component: by [npm](/docs/getting_started/importing-the-js-component.html) or [CDN](/docs/getting-started/cdn-links.html). You need to import the javascript of the component into your application in order for Clay to be included and rendered as a WebComponent component.
You can start by choosing how to import your component: by [npm](/docs/getting-started/importing-the-js-component.html) or [CDN](/docs/getting-started/introduction.html). You need to import the javascript of the component into your application in order for Clay to be included and rendered as a WebComponent component.

## Using

Expand Down
10 changes: 5 additions & 5 deletions clayui.com/src/templates/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ export default class Docs extends Component {
</div>
</div>

<footer class="clay-site-container container-fluid">
<div class="row">
<div class="col-6">
<p class="legal">Except as otherwise noted, the content of this site is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC BY-SA</a> 4.0 license.</p>
<footer className="clay-site-container container-fluid">
<div className="row">
<div className="col-6">
<p className="legal">Except as otherwise noted, the content of this site is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC BY-SA</a> 4.0 license.</p>
</div>
<div class="col-6 p-md-0">
<div className="col-6 p-md-0">
<ul className="social-icons">
<li className="mr-2">
<a className="rounded-circle sticker sticker-secondary" href="https://github.com/liferay/clay/issues" target="_blank">
Expand Down