17 lines
380 B
JavaScript

/**
* @file
* Javascript for Field Example.
*/
/**
* Provides a farbtastic colorpicker for the fancier widget.
*/
(function ($) {
Drupal.behaviors.field_materio_showroom_location = {
attach: function(context) {
// console.log('hello materio_showroom');
$(".field-multiple-drag", ".field-type-field-materio-showroom-location").hide();
}
}
})(jQuery);