20 lines
333 B
JavaScript
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);
|