Skip to content

Commit

Permalink
Bump PostCSS, semver and jquery
Browse files Browse the repository at this point in the history
  • Loading branch information
GovernikusAusweisApp2 committed Oct 10, 2023
1 parent 206fcbb commit 9ea4f48
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 43 deletions.
31 changes: 22 additions & 9 deletions docs/examples/jquery/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,25 @@ <h2>Mobile</h2>
</section>
</main>
<div class="footer">
<a target="_blank" class="url" href="https://github.com/Governikus/identglue">Github</a>
<a target="_blank" class="url" href="https://www.npmjs.com/package/@ausweisapp2/identglue">npm</a>
<a
target="_blank"
class="url"
href="https://github.com/Governikus/identglue"
>Github</a
>
<a
target="_blank"
class="url"
href="https://www.npmjs.com/package/@ausweisapp2/identglue"
>npm</a
>
</div>

<script src="https://code.jquery.com/jquery-3.6.4.slim.js"
integrity="sha256-dWvV84T6BhzO4vG6gWhsWVKVoa4lVmLnpBOZh/CAHU4="
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-3.7.1.slim.js"
integrity="sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc="
crossorigin="anonymous"
></script>
<script src="/dist/identglue.umd.js"></script>
<script>
$(function () {
Expand All @@ -59,9 +71,8 @@ <h2>Mobile</h2>
if (status.details) {
s += `\nfound ${status.details.name}, version ${status.details.implementationVersion} by ${status.details.implementationVendor}`;
}
if (s.includes("safari"))
{
s = "Status: Please start the AusweisApp2 first"
if (s.includes("safari")) {
s = "Status: Please start the AusweisApp2 first";
}
$("#status").text(s);
});
Expand All @@ -74,7 +85,9 @@ <h2>Mobile</h2>
$("#eid-install-app-hint").removeAttr("hidden");
});
const browserInfo = window.navigator.userAgent;
$("#browser-info").text("Browser: " + browserInfo.concat(" ", window.navigator.vendor));
$("#browser-info").text(
"Browser: " + browserInfo.concat(" ", window.navigator.vendor)
);
});
</script>
</body>
Expand Down
84 changes: 50 additions & 34 deletions package-lock.json

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

0 comments on commit 9ea4f48

Please sign in to comment.