Skip to content

Commit

Permalink
[docs] update docs 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
explooosion committed Oct 23, 2018
1 parent 2a2aec0 commit abd9cfa
Show file tree
Hide file tree
Showing 40 changed files with 3,496 additions and 4,775 deletions.
364 changes: 35 additions & 329 deletions docs/classes/AppPage.html

Large diffs are not rendered by default.

801 changes: 79 additions & 722 deletions docs/components/AppComponent.html

Large diffs are not rendered by default.

371 changes: 39 additions & 332 deletions docs/coverage.html

Large diffs are not rendered by default.

350 changes: 28 additions & 322 deletions docs/dependencies.html

Large diffs are not rendered by default.

757 changes: 248 additions & 509 deletions docs/directives/AgmDirection.html

Large diffs are not rendered by default.

Binary file added docs/fonts/ionicons.eot
Binary file not shown.
2,090 changes: 2,090 additions & 0 deletions docs/fonts/ionicons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/fonts/ionicons.ttf
Binary file not shown.
Binary file added docs/fonts/ionicons.woff
Binary file not shown.
Binary file added docs/fonts/ionicons.woff2
Binary file not shown.
9 changes: 9 additions & 0 deletions docs/images/coverage-badge-documentation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
375 changes: 41 additions & 334 deletions docs/index.html

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions docs/js/lazy-load-graphs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
document.addEventListener('DOMContentLoaded', () => {
var lazyGraphs = [].slice.call(document.querySelectorAll('[lazy]'));
var active = false;

var lazyLoad = () => {
if (active === false) {
active = true;

setTimeout(() => {
lazyGraphs.forEach(lazyGraph => {
if (
lazyGraph.getBoundingClientRect().top <= window.innerHeight &&
lazyGraph.getBoundingClientRect().bottom >= 0 &&
getComputedStyle(lazyGraph).display !== 'none'
) {
lazyGraph.data = lazyGraph.getAttribute('lazy');
lazyGraph.removeAttribute('lazy');

lazyGraphs = lazyGraphs.filter(image => image !== lazyGraph);

if (lazyGraphs.length === 0) {
document.removeEventListener('scroll', lazyLoad);
window.removeEventListener('resize', lazyLoad);
window.removeEventListener('orientationchange', lazyLoad);
}
}
});

active = false;
}, 200);
}
};

// initial load
lazyLoad();

var container = document.querySelector('.container-fluid.modules');
if (container) {
container.addEventListener('scroll', lazyLoad);
window.addEventListener('resize', lazyLoad);
window.addEventListener('orientationchange', lazyLoad);
}

});
7 changes: 7 additions & 0 deletions docs/js/libs/clipboard.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit abd9cfa

Please sign in to comment.