|
|
import $ from 'yoho-jquery';
|
|
|
import yoho from 'yoho-app';
|
|
|
|
|
|
const isHttps = location.protocol === 'https:';
|
|
|
|
...
|
...
|
@@ -48,7 +49,7 @@ window.addEventListener('load', function() { |
|
|
dataType: 'jsonp',
|
|
|
cache: false,
|
|
|
success(res) {
|
|
|
const usePwa = isHttps && res && res.usePwa;
|
|
|
const usePwa = isHttps && res && !yoho.isApp && res.usePwa;
|
|
|
|
|
|
if (usePwa) {
|
|
|
register();
|
...
|
...
|
|