diff options
author | 2020-10-07 16:10:17 +0300 | |
---|---|---|
committer | 2020-10-07 16:10:17 +0300 | |
commit | 469bbb9da632e8dfe787b7a446bfacfd55b5c5ad (patch) | |
tree | ea8abddca51e42ebdf6422b4b72baa307d658cfd /pydis_site/static/js/wiki/create.js | |
parent | Update guides URL to match with latest changes in #393 (diff) | |
parent | Merge pull request #405 from python-discord/remove_django_wiki (diff) |
Merge branch 'dewikification' into resources-home
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); -//]]> |