Skip to content

Commit

Permalink
Fixed typo in Readme. Fixed relative import paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
daqst committed Feb 23, 2018
1 parent 2ec9fd1 commit d4c7bab
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build status](https://travis-ci.org/ryersonlibrary/rula-expandable-card.svg?branch=master)](https://travis-ci.org/ryersonlibrary/rula-expandable-card)
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)]
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/ryersonlibrary/rula-expandable-card)

## <rula-expandable-card>

Expand Down Expand Up @@ -36,7 +36,14 @@ The following code adds a simple expanding card with content in the header.
</div>
<rula-expandable-card>
```
### Styling

## Install

```
bower install --save rula-expandable-card
```

## Styling

The following custom properties and mxing are available for styling:

Expand Down
6 changes: 3 additions & 3 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

<title>rula-expandable-card demo</title>

<script src="../bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../webcomponentsjs/webcomponents-loader.js"></script>

<link rel="import" href="../bower_components/iron-demo-helpers/demo-pages-shared-styles.html">
<link rel="import" href="../bower_components/iron-demo-helpers/demo-snippet.html">
<link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html">
<link rel="import" href="../../iron-demo-helpers/demo-snippet.html">
<link rel="import" href="../rula-expandable-card.html">

<custom-style>
Expand Down
4 changes: 2 additions & 2 deletions rula-expandable-card.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
This code may only be used under the BSD style license included with this project.
-->
<link rel="import" href="bower_components/polymer/polymer-element.html">
<link rel="import" href="../polymer/polymer-element.html">

<link rel="import" href="bower_components/paper-styles/shadow.html">
<link rel="import" href="../paper-styles/shadow.html">

<!--
`rula-expandable-card` is an interactive container for content based on Material
Expand Down
4 changes: 2 additions & 2 deletions test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

<script src="../bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../bower_components/web-component-tester/browser.js"></script>
<script src="../../webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../web-component-tester/browser.js"></script>

<title>rula-expandable-card tests</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions test/rula-expandable-card_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<title>rula-expandable-card test</title>

<script src="../bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<script src="../bower_components/web-component-tester/browser.js"></script>
<script src="../../webcomponentsjs/webcomponents-loader.js"></script>
<script src="../../web-component-tester/browser.js"></script>

<link rel="import" href="../rula-expandable-card.html">

Expand Down

0 comments on commit d4c7bab

Please sign in to comment.