##// END OF EJS Templates
frontend: use webpack instead of vulcanize
frontend: use webpack instead of vulcanize

File last commit:

r3149:a1e63a84 default
r3171:b9c8d2ad default
Show More
rhodecode-unsafe-html.html
23 lines | 607 B | text/html | HtmlLexer
components: reorganize build pipeline to have nice separation of html/js/css
r703 <link rel="import" href="../../../../../../bower_components/polymer/polymer.html">
<dom-module id="rhodecode-unsafe-html">
<template>
<style include="shared-styles"></style>
frontend: Use Polymer 2.0
r2915 <slot></slot>
components: reorganize build pipeline to have nice separation of html/js/css
r703 </template>
polymer: prepare for 3.x migration
r3149 <script>
Polymer({
is: 'rhodecode-unsafe-html',
properties: {
text: {
type: String,
observer: '_handleText'
}
},
_handleText: function(newVal, oldVal){
this.innerHTML = this.text;
}
})
</script>
components: reorganize build pipeline to have nice separation of html/js/css
r703 </dom-module>