fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Polskie tłumaczenie v0.1
[redakcja.git]
/
platforma
/
static
/
js
/
views
/
html.js
diff --git
a/platforma/static/js/views/html.js
b/platforma/static/js/views/html.js
index
a3db1d2
..
fa52bd0
100644
(file)
--- a/
platforma/static/js/views/html.js
+++ b/
platforma/static/js/views/html.js
@@
-20,9
+20,12
@@
var HTMLView = View.extend({
modelDataChanged: function(property, value) {
$('.htmlview', this.element).html(value);
modelDataChanged: function(property, value) {
$('.htmlview', this.element).html(value);
+ this.updatePrintLink();
+ },
+ updatePrintLink: function() {
var base = this.$printLink.attr('ui:baseref');
var base = this.$printLink.attr('ui:baseref');
- this.$printLink.attr('href', base + "?revision=" + this.model.get('revision'));
+ this.$printLink.attr('href', base + "?
user="+this.model.document.get('user')+"&
revision=" + this.model.get('revision'));
},
modelStateChanged: function(property, value)
},
modelStateChanged: function(property, value)
@@
-63,9
+66,7
@@
var HTMLView = View.extend({
if(this.$printLink) this.$printLink.unbind();
this._super();
this.$printLink = $('.html-print-link', this.element);
if(this.$printLink) this.$printLink.unbind();
this._super();
this.$printLink = $('.html-print-link', this.element);
-
- var base = this.$printLink.attr('ui:baseref');
- this.$printLink.attr('href', base + "?revision=" + this.model.get('revision'));
+ this.updatePrintLink();
this.element.bind('click', this.itemClicked.bind(this));
},
this.element.bind('click', this.itemClicked.bind(this));
},