Welcome to mirror list, hosted at ThFree Co, Russian Federation.

script.js « js « ncp-app - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22755e89075107991fb1c8073e95edd9527155a7 (plain)
1
2
3
4
5
6
// 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;