summaryrefslogtreecommitdiff
path: root/app/notes/static/count.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/notes/static/count.js')
-rw-r--r--app/notes/static/count.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/notes/static/count.js b/app/notes/static/count.js
deleted file mode 100644
index 6d1b5a0..0000000
--- a/app/notes/static/count.js
+++ /dev/null
@@ -1,17 +0,0 @@
-var jQuery = django.jQuery;
-var $ = jQuery;
-$(document).ready(function () {
- $('#id_body_markdown').after('<span style="display: inline-block; margin-left: 2em;"><span id="counter">40000</span> chars used </span>');
-
-$('#id_body_markdown').simplyCountable({
- counter: '#counter',
- countType: 'characters',
- maxCount: 40000,
- strictMax: false,
- countDirection: 'up',
- safeClass: 'safe',
-});
-
-
-});
-