X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/fce465da41831c71697665a594b3f9287856baaa..5b1643ef60b2e2c6e045ecbf0042237bf446d721:/src/redakcja/static/js/wiki/wikiapi.js?ds=sidebyside diff --git a/src/redakcja/static/js/wiki/wikiapi.js b/src/redakcja/static/js/wiki/wikiapi.js index f4073ff9..b9d36bea 100644 --- a/src/redakcja/static/js/wiki/wikiapi.js +++ b/src/redakcja/static/js/wiki/wikiapi.js @@ -69,6 +69,7 @@ this.galleryLink = $("*[data-key='gallery']", meta).text(); this.galleryStart = parseInt($("*[data-key='gallery-start']", meta).text()); + this.fullUri = $("*[data-key='full-uri']", meta).text(); var diff = $("*[data-key='diff']", meta).text(); if (diff) { @@ -198,6 +199,10 @@ WikiDocument.prototype.refreshGallery = function(params) { params = $.extend({}, noops, params); var self = this; + if (!self.galleryLink) { + params['failure'](self, 'Brak galerii.'); + return; + } $.ajax({ method: "GET", url: reverse("ajax_document_gallery", self.galleryLink), @@ -218,35 +223,23 @@ var msg = "Nie udało się wczytać galerii o nazwie: '" + self.galleryLink + "'."; } self.galleryImages = []; - params['failure'](self, "

" + msg + "

"); + params['failure'](self, msg); } }); }; - /* - * Set document's text - */ - WikiDocument.prototype.setText = function(text) { - return this.setDocumentProperty('text', text); - }; - - /* - * Set document's gallery link - */ - WikiDocument.prototype.setGalleryLink = function(gallery) { - return this.setDocumentProperty('galleryLink', gallery); - }; + /* + * Set document's text + */ + WikiDocument.prototype.setText = function(text, setter) { + if (text == this.text) return; + + this.text = text; + this.has_local_changes = true; - /* - * Set document's property - */ - WikiDocument.prototype.setDocumentProperty = function(property, value) { - if(this[property] !== value) { - this[property] = value; - this.has_local_changes = true; - } - }; + }; + /* * Save text back to the server */ @@ -436,6 +429,10 @@ return text.length; } + /* Temporary workaround for relative images. */ + WikiDocument.prototype.getBase = function() { + return '/media/dynamic/images/' + this.galleryLink + '/'; + }; $.wikiapi.WikiDocument = WikiDocument; })(jQuery);