summaryrefslogtreecommitdiff
path: root/modules/gallery/js/albums_form_add.js
blob: 55ad8ce62c0a30bf6822808f574fcf24ee763912 (plain)
1
2
3
4
5
6
$("#g-add-album-form input[name='title']").on("input keyup", function() {
  $("#g-add-album-form input[name='name']").val(
    $(this).val().replace(/[\s\/\\]+/g, "-").replace(/\.+$/, ""));
  $("#g-add-album-form input[name='slug']").val(
    $(this).val().replace(/[^A-Za-z0-9-_]+/g, "-").replace(/^-+/, "").replace(/-+$/, ""));
});