12345678910111213141516 |
- /**
- * @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);
|