##// END OF EJS Templates
git: merge test, fetch other branch if it's different from target. This...
git: merge test, fetch other branch if it's different from target. This prevents potentially missing commits when doing a test merge.

File last commit:

r703:1eda65ea default
r2471:0d428e35 default
Show More
rhodecode-unsafe-html.js
12 lines | 244 B | application/javascript | JavascriptLexer
Polymer({
is: 'rhodecode-unsafe-html',
properties: {
text: {
type: String,
observer: '_handleText'
}
},
_handleText: function(newVal, oldVal){
this.innerHTML = this.text;
}
})