avoid duplicate warning about /api/instance on checkup
parent
066cb2377c
commit
feefd9bff0
|
@ -22,6 +22,8 @@
|
|||
|
||||
if (/\/api\/.*/.test(src)) {
|
||||
console.error("A serverside API endpoint could not be reached.", src);
|
||||
// don't warn about bower if the error is the optional instance endpoint
|
||||
if (/\/api\/instance/.test(src)) { return; }
|
||||
}
|
||||
|
||||
//if (!/\/bower_components\/.*/.test(src)) { return; }
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
<body>
|
||||
<div id="cp-progress"></div>
|
||||
<iframe-placeholder>
|
||||
<script type="text/javascript" src="/checkup/dependency-warning.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="/checkup/dependency-warning.js?ver=1.0.1"></script>
|
||||
<script data-bootload="main.js" data-main="/common/boot.js" src="/bower_components/requirejs/require.js"></script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue