fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Uwaga button.
[redakcja.git]
/
src
/
redakcja
/
static
/
js
/
wiki
/
wikiapi.js
diff --git
a/src/redakcja/static/js/wiki/wikiapi.js
b/src/redakcja/static/js/wiki/wikiapi.js
index
b9d36be
..
b53bf06
100644
(file)
--- a/
src/redakcja/static/js/wiki/wikiapi.js
+++ b/
src/redakcja/static/js/wiki/wikiapi.js
@@
-86,6
+86,7
@@
this.galleryImages = [];
this.text = null;
this.has_local_changes = false;
this.galleryImages = [];
this.text = null;
this.has_local_changes = false;
+ this.active = true;
this._lock = -1;
this._context_lock = -1;
this._lock_count = 0;
this._lock = -1;
this._context_lock = -1;
this._lock_count = 0;
@@
-178,9
+179,14
@@
WikiDocument.prototype.checkRevision = function(params) {
/* this doesn't modify anything, so no locks */
var self = this;
WikiDocument.prototype.checkRevision = function(params) {
/* this doesn't modify anything, so no locks */
var self = this;
+ let active = self.active;
+ self.active = false;
$.ajax({
method: "GET",
url: reverse("ajax_document_rev", self.id),
$.ajax({
method: "GET",
url: reverse("ajax_document_rev", self.id),
+ data: {
+ 'a': active,
+ },
dataType: 'text',
success: function(data) {
if (data == '') {
dataType: 'text',
success: function(data) {
if (data == '') {