Browse Source

Merge pull request #147 from farfunni/ie11fix

loader fix for IE11 support
pull/149/head
Aigars Silkalns 7 years ago
committed by GitHub
parent
commit
03f23f298f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 33 additions and 33 deletions
  1. +2
    -2
      src/basic-table.html
  2. +3
    -3
      src/blank.html
  3. +2
    -2
      src/buttons.html
  4. +2
    -2
      src/calendar.html
  5. +2
    -2
      src/charts.html
  6. +2
    -2
      src/chat.html
  7. +2
    -2
      src/compose.html
  8. +2
    -2
      src/datatable.html
  9. +2
    -2
      src/email.html
  10. +2
    -2
      src/forms.html
  11. +2
    -2
      src/google-maps.html
  12. +2
    -2
      src/index.html
  13. +2
    -2
      src/signin.html
  14. +2
    -2
      src/signup.html
  15. +2
    -2
      src/ui.html
  16. +2
    -2
      src/vector-maps.html

+ 2
- 2
src/basic-table.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 3
- 3
src/blank.html View File

@ -77,10 +77,10 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
loader.classList.add('fadeOut');
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});
</script>


+ 2
- 2
src/buttons.html View File

@ -27,9 +27,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 3000);
});


+ 2
- 2
src/calendar.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/charts.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/chat.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/compose.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/datatable.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/email.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/forms.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/google-maps.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/index.html View File

@ -76,9 +76,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/signin.html View File

@ -59,9 +59,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/signup.html View File

@ -59,9 +59,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/ui.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


+ 2
- 2
src/vector-maps.html View File

@ -77,9 +77,9 @@
</div>
<script>
window.addEventListener('load', () => {
window.addEventListener('load', function load() {
const loader = document.getElementById('loader');
setTimeout(() => {
setTimeout(function() {
loader.classList.add('fadeOut');
}, 300);
});


Loading…
Cancel
Save