2016-12-12 11:24:20 +01:00

17 lines
383 B
JavaScript

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