mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -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() }}">
|
||||
$(document).ready(function () {
|
||||
$("#show").click(function(){
|
||||
$("#help-text").show();
|
||||
$("#help-text").fadeIn(500);
|
||||
$("#show").hide();
|
||||
$("#hide").show();
|
||||
});
|
||||
|
||||
$("#hide").click(function(){
|
||||
$("#help-text").hide();
|
||||
$("#help-text").fadeOut(300);
|
||||
$("#show").show();
|
||||
$("#hide").hide();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue