You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
261 B

3 months ago
  1. var app = document.getElementById('app')
  2. if (typeof Promise === 'undefined') {
  3. // skip this test in IE
  4. app.textContent = window.getCurrentScript().src
  5. } else {
  6. Promise.resolve().then(function() {
  7. app.textContent = window.getCurrentScript().src
  8. })
  9. }