Skip to content

Commit

Permalink
Release 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Oct 4, 2018
1 parent 73c16ae commit 03083a1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion mujina-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.0</version>
<version>7.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mujina-idp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.0</version>
<version>7.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
3 changes: 2 additions & 1 deletion mujina-idp/src/main/resources/public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ select.attribute-select {
background-color: white;
border: 1px solid #e4e4e4;
box-shadow: inset 0 1px 3px #e6e6e6;
height: 40px;
}

div.attribute-value {
Expand Down Expand Up @@ -165,7 +166,7 @@ span.explain-link {
border-radius: 50%;
background-color: #4DB3CF;
color: white;
padding: 1px 8px;
padding: 5px 13px;
}

.container {
Expand Down
11 changes: 6 additions & 5 deletions mujina-idp/src/main/resources/public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ function guid() {
.toString(16)
.substring(1);
}

return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
};
}

document.addEventListener("DOMContentLoaded", function () {
[].forEach.call(document.querySelectorAll(".help,.close"), function (el) {
Expand All @@ -18,13 +17,15 @@ document.addEventListener("DOMContentLoaded", function () {
if (!explanation.classList.contains("hide")) {
setTimeout(function () {
document.getElementById("close").focus();
}, 150);
}, 25);
}
});
});

document.getElementById("close").addEventListener("blur", function () {
document.getElementById("explanation").classList.toggle("hide");
document.getElementById("explanation").classList.add("hide");
});

document.querySelector(".attribute-select").addEventListener("change", function (e) {
var selectedOption = e.target.selectedOptions[0];
var val = selectedOption.value;
Expand Down Expand Up @@ -57,7 +58,7 @@ document.addEventListener("DOMContentLoaded", function () {
}
select.value = "Add attribute...";
setTimeout(function () {
document.getElementById(inputId).focus()
document.getElementById(inputId).focus();
}, 25);
});
});
2 changes: 1 addition & 1 deletion mujina-sp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.0</version>
<version>7.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.0</version>
<version>7.0.1</version>
<packaging>pom</packaging>

<properties>
Expand Down

0 comments on commit 03083a1

Please sign in to comment.