Skip to content

Commit

Permalink
Update demo for webcomponents.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Cox committed Apr 22, 2017
1 parent 1c6ac09 commit 0c9d093
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,45 @@
```
<custom-element-demo>
<template>
<link rel="import" href="demo/wysiwyg-demo.html">
<wysiwyg-demo></wysiwyg-demo>
<link rel="import" href="wysiwyg-e.html">
<link rel="import" href="tools/bold.html">
<link rel="import" href="tools/italic.html">
<link rel="import" href="tools/underline.html">
<link rel="import" href="tools/strike.html">
<link rel="import" href="tools/color.html">
<link rel="import" href="tools/clear.html">
<link rel="import" href="tools/code.html">
<link rel="import" href="tools/link.html">
<link rel="import" href="tools/image.html">
<link rel="import" href="tools/audio.html">
<link rel="import" href="tools/video.html">
<link rel="import" href="tools/ordered.html">
<link rel="import" href="tools/unordered.html">
<link rel="import" href="tools/indent.html">
<link rel="import" href="tools/outdent.html">
<link rel="import" href="tools/justify.html">
<link rel="import" href="tools/heading.html">
<link rel="import" href="tools/blockquote.html">
<wysiwyg-e style="width: 100vw; height: 100vh;">
<wysiwyg-tool-bold></wysiwyg-tool-bold>
<wysiwyg-tool-italic></wysiwyg-tool-italic>
<wysiwyg-tool-underline></wysiwyg-tool-underline>
<wysiwyg-tool-strike></wysiwyg-tool-strike>
<wysiwyg-tool-color></wysiwyg-tool-color>
<wysiwyg-tool-clear></wysiwyg-tool-clear>
<wysiwyg-tool-code></wysiwyg-tool-code>
<wysiwyg-tool-link></wysiwyg-tool-link>
<wysiwyg-tool-image></wysiwyg-tool-image>
<wysiwyg-tool-audio></wysiwyg-tool-audio>
<wysiwyg-tool-video></wysiwyg-tool-video>
<wysiwyg-tool-ordered></wysiwyg-tool-ordered>
<wysiwyg-tool-unordered></wysiwyg-tool-unordered>
<wysiwyg-tool-indent></wysiwyg-tool-indent>
<wysiwyg-tool-outdent></wysiwyg-tool-outdent>
<wysiwyg-tool-justify right center full></wysiwyg-tool-justify>
<wysiwyg-tool-heading h1 h2 h3 h4 h5 h6></wysiwyg-tool-heading>
<wysiwyg-tool-blockquote></wysiwyg-tool-blockquote>
</wysiwyg-e>
</template>
</custom-element-demo>
```
Expand Down

0 comments on commit 0c9d093

Please sign in to comment.