Corrected inconsistent indentation in django/contrib/admin/static/admin/js/urlify.js.

This commit is contained in:
Pedro Maltez 2015-08-18 15:44:23 +01:00 committed by Tim Graham
parent aed97bc222
commit b04544e21d
1 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@
s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces
s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens
s = s.toLowerCase(); // convert to lowercase
return s.substring(0, num_chars);// trim to first num_chars chars
return s.substring(0, num_chars); // trim to first num_chars chars
}
window.URLify = URLify;
})();