diff --git a/core/modules/ckeditor/js/ckeditor.stylescombo.admin.js b/core/modules/ckeditor/js/ckeditor.stylescombo.admin.js index 10bdbbb..134532b 100644 --- a/core/modules/ckeditor/js/ckeditor.stylescombo.admin.js +++ b/core/modules/ckeditor/js/ckeditor.stylescombo.admin.js @@ -46,7 +46,7 @@ * parsing works identically, but instead of failing on invalid styles, we * just ignore those. * - * @param String sstyles + * @param String styles * The "styles" setting. * * @return array diff --git a/core/modules/contextual/js/contextual.js b/core/modules/contextual/js/contextual.js index 505b2a8..76e46f2 100644 --- a/core/modules/contextual/js/contextual.js +++ b/core/modules/contextual/js/contextual.js @@ -159,7 +159,7 @@ var uncachedIDs = _.filter(ids, function initIfCached(contextualID) { var html = storage.getItem('Drupal.contextual.' + contextualID); if (html !== null) { - // Initialize after the current executation cycle, to make the AJAX + // Initialize after the current execution cycle, to make the AJAX // request for retrieving the uncached contextual links as soon as // possible, but also to ensure that other Drupal behaviors have had the // chance to set up an event listener on the Backbone collection diff --git a/core/modules/editor/js/editor.admin.js b/core/modules/editor/js/editor.admin.js index c8b1870..90886c5 100644 --- a/core/modules/editor/js/editor.admin.js +++ b/core/modules/editor/js/editor.admin.js @@ -380,8 +380,9 @@ /** * Checks whether the current status of a filter allows a specific feature - * by building the universe of potential values from the feature's require- - * ments and then checking whether anything in the filter prevents that. + * by building the universe of potential values from the feature's + * requirements and then checking whether anything in the filter prevents + * that. * * @see generateUniverseFromFeatureRequirements() */ diff --git a/core/modules/file/file.js b/core/modules/file/file.js index fa34513..09755fe 100644 --- a/core/modules/file/file.js +++ b/core/modules/file/file.js @@ -152,7 +152,7 @@ // do not get enabled when we re-enable these fields at the end of behavior // processing. Re-enable in a setTimeout set to a relatively short amount // of time (1 second). All the other mousedown handlers (like Drupal's Ajax - // behaviors) are excuted before any timeout functions are called, so we + // behaviors) are executed before any timeout functions are called, so we // don't have to worry about the fields being re-enabled too soon. // @todo If the previous sentence is true, why not set the timeout to 0? var $fieldsToTemporarilyDisable = $('div.form-managed-file input.form-file').not($enabledFields).not(':disabled'); diff --git a/core/modules/filter/filter.filter_html.admin.js b/core/modules/filter/filter.filter_html.admin.js index ed0284c..f3a10f3 100644 --- a/core/modules/filter/filter.filter_html.admin.js +++ b/core/modules/filter/filter.filter_html.admin.js @@ -38,7 +38,7 @@ Drupal.behaviors.filterFilterHtmlUpdating = { - // The form item containg the "Allowed HTML tags" setting. + // The form item contains the "Allowed HTML tags" setting. $allowedHTMLFormItem: null, // The description for the "Allowed HTML tags" field. diff --git a/core/modules/menu_ui/menu_ui.admin.js b/core/modules/menu_ui/menu_ui.admin.js index 4a04ab0..923de27 100644 --- a/core/modules/menu_ui/menu_ui.admin.js +++ b/core/modules/menu_ui/menu_ui.admin.js @@ -37,7 +37,7 @@ var $select = $('#edit-menu-parent'); // Save key of last selected element. var selected = $select.val(); - // Remove all exisiting options from dropdown. + // Remove all existing options from dropdown. $select.children().remove(); // Add new options to dropdown. Keep a count of options for testing later. var totalOptions = 0; diff --git a/core/modules/menu_ui/menu_ui.js b/core/modules/menu_ui/menu_ui.js index f0f5270..3859b7a 100644 --- a/core/modules/menu_ui/menu_ui.js +++ b/core/modules/menu_ui/menu_ui.js @@ -45,7 +45,7 @@ // Global trigger on checkbox (do not fill-in a value when disabled). $checkbox.on('change', function () { if ($checkbox.is(':checked')) { - if (!$link_title.data('menuLinkAutomaticTitleOveridden')) { + if (!$link_title.data('menuLinkAutomaticTitleOverridden')) { $link_title.val($title.val()); } } diff --git a/core/modules/quickedit/js/models/EntityModel.js b/core/modules/quickedit/js/models/EntityModel.js index f756ebe..b7f9fcb 100644 --- a/core/modules/quickedit/js/models/EntityModel.js +++ b/core/modules/quickedit/js/models/EntityModel.js @@ -16,7 +16,7 @@ el: null, // An entity ID, of the form "/", e.g. "node/1". entityID: null, - // An entity instance ID. The first intance of a specific entity (i.e. with + // An entity instance ID. The first instance of a specific entity (i.e. with // a given entity ID) is assigned 0, the second 1, and so on. entityInstanceID: null, // The unique ID of this entity instance on the page, of the form "') .parent().first().addClass('first').end().last().addClass('last'); - // Remove the 'Add ' prefix from the button labels since they're being palced + // Remove the 'Add ' prefix from the button labels since they're being placed // in an 'Add' dropdown. // @todo This assumes English, but so does $addDisplayDropdown above. Add // support for translation.