Mercurial > hg > isophonics-drupal-site
view core/modules/menu_ui/menu_ui.admin.js @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line source
/** * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/2815083 * @preserve **/ (function ($, Drupal) { Drupal.behaviors.menuUiChangeParentItems = { attach: function attach(context, settings) { var $menu = $('#edit-menu').once('menu-parent'); if ($menu.length) { Drupal.menuUiUpdateParentList(); $menu.on('change', 'input', Drupal.menuUiUpdateParentList); } } }; Drupal.menuUiUpdateParentList = function () { var $menu = $('#edit-menu'); var values = []; $menu.find('input:checked').each(function () { values.push(Drupal.checkPlain($.trim($(this).val()))); }); $.ajax({ url: location.protocol + '//' + location.host + Drupal.url('admin/structure/menu/parents'), type: 'POST', data: { 'menus[]': values }, dataType: 'json', success: function success(options) { var $select = $('#edit-menu-parent'); var selected = $select.val(); $select.children().remove(); var totalOptions = 0; Object.keys(options || {}).forEach(function (machineName) { $select.append($('<option ' + (machineName === selected ? ' selected="selected"' : '') + '></option>').val(machineName).text(options[machineName])); totalOptions++; }); $select.closest('div').toggle(totalOptions > 0).attr('hidden', totalOptions === 0); } }); }; })(jQuery, Drupal);