You are here

public function BrowserConfigurationTrait::urlBlacklist in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserConfigurationTrait.php \Zumba\GastonJS\Browser\BrowserConfigurationTrait::urlBlacklist()

Set a blacklist of urls that we are not supposed to load

Parameters

array $blackList:

Return value

bool

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserConfigurationTrait.php, line 25

Class

BrowserConfigurationTrait
Trait BrowserConfigurationTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function urlBlacklist($blackList) {
  return $this
    ->command('set_url_blacklist', $blackList);
}