Skip to content

Commit

Permalink
Remove example from readme
Browse files Browse the repository at this point in the history
Not working with webcomponents.org
  • Loading branch information
chuckh committed Dec 23, 2016
1 parent f4ae5ba commit 29893ff
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 33 deletions.
34 changes: 1 addition & 33 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,39 +16,7 @@ Learn more at http://quilljs.com/
### Screenshot Snow Theme
![polymer-quill screenshot](polymer-quill-screenshot.png)

### Example:
<!---
```
<custom-element-demo>
<template>
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
<script>
window.Polymer = {
dom: 'shady',
lazyRegister: true
};
</script>
<link rel="import" href="polymer-quill.html">
<link rel="import" href="polymer-quill-bubble.html">
<link rel="import" href="polymer-quill-html-render.html">
<style is="custom-style">
#container {
display: flex;
}
</style>
<div id="container">
<next-code-block></next-code-block>
</div>
<script>
// Setup Polymer options
window.Polymer = {
dom: 'shady'
};
</script>
</template>
</custom-element-demo>
```
-->

```html
<polymer-quill content="Hello World"></polymer-quill>
<polymer-quill-bubble content="Hello World (click text to see toolbar)" show-results></polymer-quill-bubble>
Expand Down
35 changes: 35 additions & 0 deletions readme-example.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### Example:
webcomponents.org inline demo. Not working because of needing to use shady

<!---
```
<custom-element-demo>
<template>
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
<script>
window.Polymer = {
dom: 'shady',
lazyRegister: true
};
</script>
<link rel="import" href="polymer-quill.html">
<link rel="import" href="polymer-quill-bubble.html">
<link rel="import" href="polymer-quill-html-render.html">
<style is="custom-style">
#container {
display: flex;
}
</style>
<div id="container">
<next-code-block></next-code-block>
</div>
<script>
// Setup Polymer options
window.Polymer = {
dom: 'shady'
};
</script>
</template>
</custom-element-demo>
```
-->

0 comments on commit 29893ff

Please sign in to comment.