-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo-paragraph.html
35 lines (34 loc) · 1 KB
/
demo-paragraph.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../content-editor/content-editor.html">
<dom-module id="demo-paragraph">
<template>
<link href="https://fonts.googleapis.com/css?family=Cabin+Sketch|Caveat|Pompiere" rel="stylesheet">
<style>
:host {
margin: 0;
padding: 50px;
display: block;
font-size: 30px;
font-family: 'Pompiere', cursive;
}
</style>
<div is-content="wsywig" content-id="image-info">
<p>Setup Information</p>
</div>
</template>
<script>
Polymer({
is: 'demo-paragraph',
properties: {
usercontent: {
type: Object,
notify: true,
reflectToAttribute: false
}
},
behaviors: [
ContentEditorBehavior
],
});
</script>
</dom-module>