17 lines
383 B
JavaScript
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);
|