diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy/vocabulary.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/taxonomy/vocabulary.js b/modules/taxonomy/vocabulary.js new file mode 100644 index 000000000..227f2b9cd --- /dev/null +++ b/modules/taxonomy/vocabulary.js @@ -0,0 +1,29 @@ +// $Id$ +(function ($) { + +Drupal.behaviors.contentTypes = { + attach: function () { + if ($('#edit-machine-name').val() == $('#edit-name').val().toLowerCase().replace(/[^a-z0-9]+/g, '_').replace(/_+/g, '_') || $('#edit-machine-name').val() == '') { + $('#edit-machine-name-wrapper').hide(); + $('#edit-name').keyup(function () { + var machine = $(this).val().toLowerCase().replace(/[^a-z0-9]+/g, '_').replace(/_+/g, '_'); + if (machine != '_' && machine != '') { + $('#edit-machine-name').val(machine); + $('#vocabulary-name-suffix').empty().append(' Machine name: ' + machine + ' [').append($('<a href="#">' + Drupal.t('Edit') + '</a>').click(function () { + $('#edit-machine-name-wrapper').show(); + $('#vocabulary-name-suffix').hide(); + $('#edit-name').unbind('keyup'); + return false; + })).append(']'); + } + else { + $('#edit-machine-name').val(machine); + $('#vocabulary-name-suffix').text(''); + } + }); + $('#edit-name').keyup(); + } + } +}; + +})(jQuery); |