X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5913c54d19b8f6775633176032161d49f9b2f1aa..7518020e7db372ad8bbb13fb24c99931c4e90aff:/src/redakcja/static/js/wiki/view_summary.js diff --git a/src/redakcja/static/js/wiki/view_summary.js b/src/redakcja/static/js/wiki/view_summary.js index 099a0e81..1bc3fb5d 100644 --- a/src/redakcja/static/js/wiki/view_summary.js +++ b/src/redakcja/static/js/wiki/view_summary.js @@ -32,15 +32,23 @@ SummaryPerspective.prototype.showCharCount = function() { var cc; try { + $('#charcounts_text').show(); + $('#charcounts_raw').hide(); + cc = this.doc.getLength({noFootnotes: true, noThemes: true}); + $('#charcount').html(cc); + $('#charcount_pages').html((Math.round(cc/18)/100).toLocaleString()); + cc = this.doc.getLength(); - $('#charcount_untagged').hide(); + $('#charcount_full').html(cc); + $('#charcount_full_pages').html((Math.round(cc/18)/100).toLocaleString()); } catch (e) { - $('#charcount_untagged').show(); + $('#charcounts_text').hide(); + $('#charcounts_raw').show(); cc = this.doc.text.replace(/\s{2,}/g, ' ').length; + $('#charcount_raw').html(cc); + $('#charcount_raw_pages').html((Math.round(cc/18)/100).toLocaleString()); } - $('#charcount').html(cc); - $('#charcount_pages').html((Math.round(cc/18)/100).toLocaleString()); } SummaryPerspective.prototype.freezeState = function(){