updated devel

This commit is contained in:
2020-06-23 12:18:53 +02:00
parent 835220fa8b
commit 5b116d4733
116 changed files with 6248 additions and 5663 deletions
+20 -3
View File
@@ -1,6 +1,15 @@
/**
* @file
* Behaviors for Devel.
*/
(function ($) {
// Explain link in query log
/**
* Explain link in query log.
*
* @type {Drupal~behavior}
*/
Drupal.behaviors.devel_explain = {
attach: function(context, settings) {
$('a.dev-explain').click(function () {
@@ -14,7 +23,11 @@ Drupal.behaviors.devel_explain = {
}
}
// Arguments link in query log
/**
* Arguments link in query log.
*
* @type {Drupal~behavior}
*/
Drupal.behaviors.devel_arguments = {
attach: function(context, settings) {
$('a.dev-arguments').click(function () {
@@ -28,7 +41,11 @@ Drupal.behaviors.devel_arguments = {
}
}
// Placeholders link in query log
/**
* Placeholders link in query log.
*
* @type {Drupal~behavior}
*/
Drupal.behaviors.devel_placeholders = {
attach: function(context, settings) {
$('a.dev-placeholders').click(function () {