Skip to content

Commit

Permalink
Merge pull request #7103 from AnjanaSamindraPerera/add-removed-configs
Browse files Browse the repository at this point in the history
Add changes needed for typingDNA connector which was missed from unification effort
  • Loading branch information
AnjanaSamindraPerera authored Jan 6, 2025
2 parents 18ad315 + b78b823 commit 14a3dc9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/itchy-jobs-knock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/identity-apps-core": patch
---

Add missing changes from unification
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<%@ page import="java.io.UnsupportedEncodingException" %>

<jsp:directive.include file="includes/init-loginform-action-url.jsp"/>
<jsp:directive.include file="plugins/basicauth-extensions.jsp"/>

<script>
function goBack() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@

<script>
var typingdna = new TypingDNA();
typingdna.addTarget("username");
typingdna.addTarget("usernameUserInput");
typingdna.addTarget("password");
$(document).ready(function(){
document.getElementById("loginForm").addEventListener("submit",getTypingPatterns);
document.getElementById("username").setAttribute("autocomplete", "off");
document.getElementById("sign-in-button").addEventListener("click", getTypingPatterns);
document.getElementById("usernameUserInput").setAttribute("autocomplete", "off");
});
function getTypingPatterns() {
Expand Down

0 comments on commit 14a3dc9

Please sign in to comment.