mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Use fadeIn/fadeOut for password reset page for nicer look
This commit is contained in:
parent
d14b1e3825
commit
d19c6ab8e7
|
@ -96,13 +96,13 @@
|
||||||
<script nonce="{{ csrf_token() }}">
|
<script nonce="{{ csrf_token() }}">
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$("#show").click(function(){
|
$("#show").click(function(){
|
||||||
$("#help-text").show();
|
$("#help-text").fadeIn(500);
|
||||||
$("#show").hide();
|
$("#show").hide();
|
||||||
$("#hide").show();
|
$("#hide").show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#hide").click(function(){
|
$("#hide").click(function(){
|
||||||
$("#help-text").hide();
|
$("#help-text").fadeOut(300);
|
||||||
$("#show").show();
|
$("#show").show();
|
||||||
$("#hide").hide();
|
$("#hide").hide();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue