modelDataChanged: function(property, value) {
$('.htmlview', this.element).html(value);
+
+ var base = this.$printLink.attr('ui:baseref');
+ this.$printLink.attr('href', base + "?revision=" + this.model.get('revision'));
},
modelStateChanged: function(property, value) {
this.freeze(this.model.get('error'));
}
},
+
+
+ render: function() {
+ if(this.$printLink) this.$printLink.unbind();
+ this._super();
+ this.$printLink = $('.html-print-link', this.element);
+ },
reload: function() {
this.model.load(true);