Skip to content

Commit

Permalink
Update to Drupal 7.87. For more information, see https://www.drupal.o…
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantheon Automation authored and CdrMarks committed Jan 19, 2022
1 parent 8550617 commit cf089c1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Drupal 7.87, 2022-01-19
-----------------------
- Fix regression caused by jQuery UI position() backport

Drupal 7.86, 2022-01-18
-----------------------
- Fixed security issues:
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.86');
define('VERSION', '7.87');

/**
* Core API compatibility.
Expand Down
3 changes: 3 additions & 0 deletions misc/ui/jquery.ui.position-1.13.0-backport.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
var fnOriginalPosition = $.fn.position;
$.fn.extend({
'position': function (options) {
if (typeof options === 'undefined') {
return fnOriginalPosition.call(this);
}

// Make sure string options are treated as CSS selectors
var target = typeof options.of === "string" ?
Expand Down

0 comments on commit cf089c1

Please sign in to comment.