##// END OF EJS Templates
svn-support: Only add reload-cmd subscriber if a reload command is set....
svn-support: Only add reload-cmd subscriber if a reload command is set. If no reload command is set in the ini file there is no need to add the subscriber to the event.

File last commit:

r703:1eda65ea default
r1024:56031659 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;
}
})