You are here

public function ScrollTopCommand::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Ajax/ScrollTopCommand.php \Drupal\views\Ajax\ScrollTopCommand::__construct()

Constructs a \Drupal\views\Ajax\ScrollTopCommand object.

Parameters

string $selector: A CSS selector.

File

core/modules/views/src/Ajax/ScrollTopCommand.php, line 27

Class

ScrollTopCommand
Provides an AJAX command for scrolling to the top of an element.

Namespace

Drupal\views\Ajax

Code

public function __construct($selector) {
  $this->selector = $selector;
}