fix scope selector for "base-domainless" hostnames

pull/2/head
Raymond Hill 6 years ago
parent 9432e3b6eb
commit efa0085a67
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

@ -49,7 +49,7 @@ let fireChangeEvent = function() {
}; };
let init = function(domain, hostname, scope, container) { let init = function(domain, hostname, scope, container) {
if ( typeof domain !== 'string' || domain === '' ) { return; } if ( typeof domain !== 'string' ) { return; }
currentScope = ''; currentScope = '';
@ -111,7 +111,7 @@ let init = function(domain, hostname, scope, container) {
listening = true; listening = true;
} }
update(scope, container); update(scope || hostname, container);
}; };
let getScope = function() { let getScope = function() {

Loading…
Cancel
Save