diff options
author | 2020-10-04 15:33:44 +0200 | |
---|---|---|
committer | 2020-10-04 15:33:44 +0200 | |
commit | e26897e3f7c0d0af3950e1d1d60fd3800fc13683 (patch) | |
tree | 581d8c1f28eee33da9a48702051cc0719b89a9bf /pydis_site/static/js/wiki/create.js | |
parent | Remove wiki and pygments from Pipfile. (diff) |
Remove wiki templates and static.
Diffstat (limited to 'pydis_site/static/js/wiki/create.js')
-rw-r--r-- | pydis_site/static/js/wiki/create.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/pydis_site/static/js/wiki/create.js b/pydis_site/static/js/wiki/create.js deleted file mode 100644 index e02d75a3..00000000 --- a/pydis_site/static/js/wiki/create.js +++ /dev/null @@ -1,13 +0,0 @@ -//<![CDATA[ -(function($) { - $(document).ready(function (){ - $("#id_title").keyup(function () { - var e = $("#id_slug")[0]; - if(!e._changed) { - slug = URLify(this.value, 50); - e.value = slug; - } - }); - }); -})(jQuery); -//]]> |