materio_showroom.js 383 B

12345678910111213141516
  1. /**
  2. * @file
  3. * Javascript for materio showroom field location.
  4. */
  5. /**
  6. * Disable draggable behaviour for the field.
  7. */
  8. (function ($) {
  9. Drupal.behaviors.field_materio_showroom_location = {
  10. attach: function(context) {
  11. // console.log('hello materio_showroom');
  12. $(".field-multiple-drag", ".field-type-field-materio-showroom-location").hide();
  13. }
  14. }
  15. })(jQuery);