Skip to content

Commit

Permalink
created new branch for PR merge
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniequintana authored and jywarren committed Jun 22, 2022
1 parent 658304b commit eb5d571
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
3 changes: 0 additions & 3 deletions dist/infragram2.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
--border: 1px solid #353948;
}

*{
border: 1px solid red;
}
@font-face {
font-family:'junctionregular';
src:url("https://raw.githubusercontent.com/theleagueof/junction/master/_webfonts/junction-webfont.eot");
Expand Down
25 changes: 24 additions & 1 deletion index2.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,30 @@


<script src="dist/infragram2.js"></script>

<script>
document.addEventListener("DOMContentLoaded", function (event) {
(function () {
$('[data-bs-toggle="tooltip"]').tooltip()
})();
});
document.addEventListener("DOMContentLoaded", function (event) {
$(function () {
$('[data-bs-toggle="popover"]').popover()
})();
});
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
});

var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl)
});
var popover = new bootstrap.Popover(document.querySelector('.popover-dismiss'), {
trigger: 'focus'
});
</script>

</head>

Expand Down

0 comments on commit eb5d571

Please sign in to comment.