Browse Source

try to use console button

andre 4 years ago
parent
commit
6b692d65d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/UI/Vms/Buttons/ConsoleButton.php

+ 1 - 1
app/UI/Vms/Buttons/ConsoleButton.php

@@ -41,7 +41,7 @@ class ConsoleButton extends ButtonDataTableModalAction implements ClientArea
 
     public function setConsoleUrl($url)
     {
-        $this->addHtmlAttribute('onclick', $url);
+        $this->addHtmlAttribute('onclick', "window.open('{$url}', '', 'width=900,height=700'); return false;");
         return $this;
     }
 }