rhodecode-unsafe-html.html
23 lines
| 607 B
| text/html
|
HtmlLexer
r703 | <link rel="import" href="../../../../../../bower_components/polymer/polymer.html"> | |||
<dom-module id="rhodecode-unsafe-html"> | ||||
<template> | ||||
<style include="shared-styles"></style> | ||||
r2915 | <slot></slot> | |||
r703 | </template> | |||
r3149 | <script> | |||
Polymer({ | ||||
is: 'rhodecode-unsafe-html', | ||||
properties: { | ||||
text: { | ||||
type: String, | ||||
observer: '_handleText' | ||||
} | ||||
}, | ||||
_handleText: function(newVal, oldVal){ | ||||
this.innerHTML = this.text; | ||||
} | ||||
}) | ||||
</script> | ||||
r703 | </dom-module> | |||