12345678910111213141516 |
- /**
- * @file
- * Javascript for materio showroom field location.
- */
- /**
- * Disable draggable behaviour for the field.
- */
- (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);
|