aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/js/wiki/move.js
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-10-04 19:44:01 +0200
committerGravatar GitHub <[email protected]>2020-10-04 19:44:01 +0200
commitf3c2c21fa209ace469d0eb695bafa4f10a774456 (patch)
tree027e977dd01117ccaff7e18600b80d270c67e045 /pydis_site/static/js/wiki/move.js
parentAdd "Welcome to Python Discord" video to index (diff)
parentRemove references to django_nyt (diff)
Merge pull request #405 from python-discord/remove_django_wiki
Dewikification: Remove django-wiki from the stack
Diffstat (limited to 'pydis_site/static/js/wiki/move.js')
-rw-r--r--pydis_site/static/js/wiki/move.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/pydis_site/static/js/wiki/move.js b/pydis_site/static/js/wiki/move.js
deleted file mode 100644
index ddab06f5..00000000
--- a/pydis_site/static/js/wiki/move.js
+++ /dev/null
@@ -1,8 +0,0 @@
-$('#id_destination').after($('#dest_selector').remove());
-$('#id_destination').attr('type', 'hidden');
-
-function select_path(path, title) {
- $('#id_destination').val(path);
- if (title == "(root)") title = "";
- $('#dest_selector .dest_selector_title').html(title ? title : "&nbsp;&nbsp;/&nbsp;&nbsp;");
-}