fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix out-of-date check, don't panic on failed ajax
[redakcja.git]
/
redakcja
/
static
/
js
/
wiki
/
wikiapi.js
diff --git
a/redakcja/static/js/wiki/wikiapi.js
b/redakcja/static/js/wiki/wikiapi.js
index
bce1f89
..
a518410
100644
(file)
--- a/
redakcja/static/js/wiki/wikiapi.js
+++ b/
redakcja/static/js/wiki/wikiapi.js
@@
-163,8
+163,10
@@
url: reverse("ajax_document_rev", self.id),
dataType: 'text',
success: function(data) {
- if (data
!= self.revision
)
+ if (data
== '' && params.error
)
params.error();
+ else if (data != self.revision)
+ params.outdated();
}
});
};