This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/views/js/view-list.js

13 lines
308 B
JavaScript

/**
* @file view-list.js
*
* Handles JS things for view listing.
*/
Drupal.behaviors.ViewsList = function() {
var timeoutID = 0;
$('form#views-ui-list-views-form select:not(.views-processed)')
.addClass('views-processed')
.change(function() {
$('#edit-views-apply').click();
});
};