forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
17 lines
496 B
JavaScript
17 lines
496 B
JavaScript
/* eslint-disable no-bitwise, no-nested-ternary, no-mutable-exports, comma-dangle, strict */
|
|
|
|
'use strict';
|
|
|
|
(($, Drupal, drupalSettings) => {
|
|
|
|
Drupal.behaviors.ginLbToolbar = {
|
|
attach: (context) => {
|
|
once('glb-primary-save', '.glb-primary-save ').forEach((item)=>{
|
|
item.addEventListener('click', function (event) {
|
|
document.querySelector('#gin_sidebar .form-actions .glb-button--primary').click();
|
|
});
|
|
})
|
|
}
|
|
}
|
|
})(jQuery, Drupal, drupalSettings);
|