diff --git a/core/composer.json b/core/composer.json index aca4684..1c7fc8a 100644 --- a/core/composer.json +++ b/core/composer.json @@ -109,7 +109,7 @@ "drupal/migrate_drupal_ui": "self.version", "drupal/node": "self.version", "drupal/options": "self.version", - "drupal.off_canvas": "self.version", + "drupal/outside_in": "self.version", "drupal/page_cache": "self.version", "drupal/path": "self.version", "drupal/quickedit": "self.version", diff --git a/core/modules/outside_in/outside_in.module b/core/modules/outside_in/outside_in.module index 6089206..dc81474 100644 --- a/core/modules/outside_in/outside_in.module +++ b/core/modules/outside_in/outside_in.module @@ -15,7 +15,7 @@ function outside_in_help($route_name, RouteMatchInterface $route_match) { case 'help.page.outside_in': $output = '

' . t('About') . '

'; // @todo Update help text. - $output .= '

' . t('The Outside In module is something that we should have help for.') . '

'; + $output .= '

' . t('The Outside In module is something that we should have help for. For more information, see the online documentation for the Outside In module.', [':outside-in-documentation' => 'https://www.drupal.org/documentation/modules/outside_in']) . '

'; return $output; } } diff --git a/core/modules/outside_in/src/Tests/Ajax/OffCanvasDialogTest.php b/core/modules/outside_in/src/Tests/Ajax/OffCanvasDialogTest.php index 78a6aba..3ad22a8 100644 --- a/core/modules/outside_in/src/Tests/Ajax/OffCanvasDialogTest.php +++ b/core/modules/outside_in/src/Tests/Ajax/OffCanvasDialogTest.php @@ -18,7 +18,7 @@ class OffCanvasDialogTest extends AjaxTestBase { * * @var array */ - public static $modules = array('ajax_test'); + public static $modules = array('outside_in'); /** * Test sending AJAX requests to open and manipulate offcanvas dialog. @@ -45,7 +45,7 @@ public function testDialog() { // Emulate going to the JS version of the page and check the JSON response. $ajax_result = $this->drupalGetAjax('ajax-test/dialog-contents', array('query' => array(MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_offcanvas'))); - $this->assertEqual($offcanvas_expected_response, $ajax_result[3], 'Modal dialog JSON response matches.'); + $this->assertEqual($offcanvas_expected_response, $ajax_result[3], 'Offcanvas dialog JSON response matches.'); } }