aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/js/wiki/create.js
blob: e02d75a34c5547daef11e12cf4e082e9209aca15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//<![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);
//]]>