##// END OF EJS Templates
users: added option to detach pull requests for users which we delete....
users: added option to detach pull requests for users which we delete. - as bonus added ability to specify new owner via ?detach_user_id=NUM GET param.

File last commit:

r3192:689a0c93 merge stable
r4351:2d86851b default
Show More
rhodecode-unsafe-html.js
30 lines | 651 B | application/javascript | JavascriptLexer
js: migrate to polymer 3.x
r3173 import {PolymerElement, html} from '@polymer/polymer/polymer-element.js';
export class RhodecodeUnsafeHtml extends PolymerElement {
static get is() {
return 'rhodecode-unsafe-html';
}
static get template() {
return html`
<style include="shared-styles"></style>
<slot></slot>
`;
}
static get properties() {
return {
text: {
type: String,
observer: '_handleText'
}
}
}
_handleText(newVal, oldVal) {
this.innerHTML = this.text;
}
}
customElements.define(RhodecodeUnsafeHtml.is, RhodecodeUnsafeHtml);