ソースを参照

try to use console button

andre 4 年 前
コミット
6b692d65d1
1 ファイル変更1 行追加1 行削除
  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)
     public function setConsoleUrl($url)
     {
     {
-        $this->addHtmlAttribute('onclick', $url);
+        $this->addHtmlAttribute('onclick', "window.open('{$url}', '', 'width=900,height=700'); return false;");
         return $this;
         return $this;
     }
     }
 }
 }