OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
| 9 --> |
| 10 <link rel="import" href="bower_components/polymer/polymer.html"> |
| 11 <link rel="import" href="sub-import/sub-import.html"> |
| 12 <polymer-element name="x-import"> |
| 13 <template> |
| 14 <link rel="stylesheet" href="import-test.css" shim-shadowdom> |
| 15 [Imported: <content></content>] |
| 16 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 630 630" fill="#fff" wi
dth="630" height="630" flex?="{{mode !== 'cover'}}"> |
| 17 <rect x="0" y="0" width="630" height="630" fill="#3c790a"/> |
| 18 <path d="m212 497c11 17 20 31 40 31 19 0 32-8 32-37v-201h59v202c0 61-36 89
-88 89-47 0-75-25-89-54M423 492c13 21 29 36 58 36 25 0 40-12 40-29 0-20-16-27-43
-39l-15-6c-43-18-71-41-71-89 0-44 34-78 87-78 38 0 65 13 84 47l-46 30c-10-18-21-
25-38-25-17 0-28 11-28 25 0 18 11 25 36 36l15 6c50 22 79 44 79 93 0 53-42 82-98
82-55 0-91-26-108-60"/> |
| 19 <polygon /> |
| 20 <path /> |
| 21 <polygon/> |
| 22 <path /> |
| 23 </svg> |
| 24 <ceci-definition> |
| 25 { |
| 26 "name": "Signal Transformer", |
| 27 "thumbnail": "./thumbnail.png", |
| 28 "description": "Transforms an incoming signal to a value you set and broad
casts it.", |
| 29 "broadcasts": { |
| 30 "transformedMessage": { |
| 31 "label": "Transformed Message" |
| 32 } |
| 33 }, |
| 34 "listeners": { |
| 35 "incomingMessage": { |
| 36 "label": "Incoming Message", |
| 37 "default" : true |
| 38 } |
| 39 }, |
| 40 "attributes": { |
| 41 "message": { |
| 42 "label": "Message", |
| 43 "editable": "Text", |
| 44 "default" : true |
| 45 } |
| 46 } |
| 47 } |
| 48 </ceci-definition> |
| 49 " entities! " < > |
| 50 <span>é</span> |
| 51 </template> |
| 52 <script> |
| 53 Polymer('x-import'); |
| 54 </script> |
| 55 <script type="application/fbs"> |
| 56 WHAT GOES HERE? |
| 57 </script> |
| 58 </polymer-element> |
OLD | NEW |