You are here

public function BrowserNavigateTrait::goBack in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php \Zumba\GastonJS\Browser\BrowserNavigateTrait::goBack()

Goes back on the browser history if possible

Return value

bool

Throws

BrowserError

\Exception

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php, line 36

Class

BrowserNavigateTrait
Trait BrowserNavigateTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function goBack() {
  return $this
    ->command('go_back');
}