22 lines
633 B
JavaScript
22 lines
633 B
JavaScript
/**
|
|
* @file
|
|
* Javascript related to the main view list.
|
|
*/
|
|
(function ($) {
|
|
|
|
Drupal.behaviors.viewsUIList = {
|
|
attach: function (context) {
|
|
$('#ctools-export-ui-list-items thead a').once('views-ajax-processed').each(function() {
|
|
$(this).click(function() {
|
|
var query = $.deparam.querystring(this.href);
|
|
$('#ctools-export-ui-list-form select[name=order]').val(query['order']);
|
|
$('#ctools-export-ui-list-form select[name=sort]').val(query['sort']);
|
|
$('#ctools-export-ui-list-form input.ctools-auto-submit-click').trigger('click');
|
|
return false;
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
})(jQuery);
|