summaryrefslogtreecommitdiff
path: root/core/js/albums_form_add.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/albums_form_add.js')
-rw-r--r--core/js/albums_form_add.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/core/js/albums_form_add.js b/core/js/albums_form_add.js
deleted file mode 100644
index 06a364f3..00000000
--- a/core/js/albums_form_add.js
+++ /dev/null
@@ -1,12 +0,0 @@
-$("#gAddAlbumForm input[name=title]").change(
- function() {
- $("#gAddAlbumForm input[name=name]").attr(
- "value", $("#gAddAlbumForm input[name=title]").attr("value").
- replace(/\s+/g, "_").replace(/\.+$/, ""));
- });
-$("#gAddAlbumForm input[name=title]").keyup(
- function() {
- $("#gAddAlbumForm input[name=name]").attr(
- "value", $("#gAddAlbumForm input[name=title]").attr("value").
- replace(/\s+/g, "_").replace(/\.+$/, ""));
- });