
| Current Path : /var/www/html/pallets_old/web/core/modules/contextual/js/views/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/pallets_old/web/core/modules/contextual/js/views/AuralView.js |
/**
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/2815083
* @preserve
**/
(function (Drupal, Backbone) {
Drupal.contextual.AuralView = Backbone.View.extend({
initialize: function initialize(options) {
this.options = options;
this.listenTo(this.model, 'change', this.render);
this.render();
},
render: function render() {
var _this = this;
var isOpen = this.model.get('isOpen');
this.$el.find('.contextual-links').prop('hidden', !isOpen);
var $trigger = this.$el.find('.trigger');
$trigger.each(function (index, element) {
element.textContent = Drupal.t('@action @title configuration options', {
'@action': !isOpen ? _this.options.strings.open : _this.options.strings.close,
'@title': _this.model.get('title')
});
}).attr('aria-pressed', isOpen);
}
});
})(Drupal, Backbone);