Bugfixing. Adding sanity checks

This commit is contained in:
color.diff=auto
2021-03-27 02:53:26 -06:00
parent b85fbf02b3
commit 9bc941faea
8 changed files with 187 additions and 68 deletions

View File

@@ -12,7 +12,10 @@ $(document).ready(function () {
$('option[disabled="disabled"]').show();
}
});
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
$('.w-select').change(function () {
$('.a-select').each(function (i, v) {
@@ -44,15 +47,20 @@ $(document).ready(function () {
});
$('.help').hover(function () {
$('.help').click(function () {
$(".fa-help").remove();
$(this).next().fadeToggle("slow").css({
$(this).next().fadeToggle("slow").focus().css({
"position": "absolute",
"z-index": "1000",
"background": "#eee",
"color": "black !important",
"border": "1px solid #aaa",
"width": "300px",
});
});
})
});
$('.form-text').click(function () {
$(this).fadeOut("slow");
});
});