mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-09 14:42:01 -03:30
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
// open the NCP web panel
|
|
|
|
var url = window.location.protocol + '//' + window.location.hostname + ':4443';
|
|
|
|
if ( !window.open( url, '_blank' ) ) // try to open in a new tab first
|
|
window.location.href = url;
|