This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/js/webform.admin.tabledrag.js
2018-11-23 12:29:20 +00:00

20 lines
333 B
JavaScript

/**
* @file
* Dropbutton feature.
*/
(function ($, Drupal) {
'use strict';
// Make sure that dropButton behavior exists.
if (!Drupal.behaviors.tableDrag) {
return;
}
$(function () {
$('head').append('<style type="text/css">.webform-tabledrag-hide {display: table-cell;}</style>');
});
})(jQuery, Drupal);