mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-09-18 01:22:08 +00:00
Bugfixing. Adding sanity checks
This commit is contained in:
18
res/app.js
18
res/app.js
@@ -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");
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user