diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php b/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php index 2065a7d..8b5416a 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php @@ -10,7 +10,7 @@ use Drupal\simpletest\WebTestBase; /** - * Functional tests for and for attributes. + * Functional tests for and attributes. */ class HtmlAttributesTest extends WebTestBase { diff --git a/core/modules/views_ui/js/views-admin.js b/core/modules/views_ui/js/views-admin.js index da947f6..3e5ca46 100644 --- a/core/modules/views_ui/js/views-admin.js +++ b/core/modules/views_ui/js/views-admin.js @@ -481,7 +481,6 @@ Drupal.viewsUi.RearrangeFilterHandler = function ($table, $operator) { .on('click.views-rearrange-filter-handler', $.proxy(this, 'redrawOperatorLabels')); }; - $.extend(Drupal.viewsUi.RearrangeFilterHandler.prototype, { /** * Insert links that allow filter groups to be added and removed. @@ -489,9 +488,9 @@ $.extend(Drupal.viewsUi.RearrangeFilterHandler.prototype, { insertAddRemoveFilterGroupLinks: function () { // Insert a link for adding a new group at the top of the page, and make it - // match the action links styling used in a typical page.html.twig. - // Note that Drupal does not provide a theme function for this markup, so - // this is the best we can do. + // match the action link styling used in a typical page.html.twig. Since + // Drupal does not provide a theme function for this markup this is the best + // we can do. $('') .prependTo(this.table.parent()) // When the link is clicked, dynamically click the hidden form button for @@ -758,7 +757,6 @@ $.extend(Drupal.viewsUi.RearrangeFilterHandler.prototype, { } }}); - /** * Add a select all checkbox, which checks each checkbox at once. */