mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-10-13 08:24:24 -05:00
Cube documenter working half way
This commit is contained in:
44
res/app.js
44
res/app.js
@@ -172,6 +172,18 @@ $(document).ready(function () {
|
||||
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
**/
|
||||
|
||||
// every time we change a prop dropdown,
|
||||
//
|
||||
@@ -197,6 +209,13 @@ $(document).ready(function () {
|
||||
* Properties/par/min/max onchange function, updated item string stats
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
|
||||
**/
|
||||
|
||||
|
||||
@@ -392,6 +411,29 @@ $(document).ready(function () {
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
* END on change for inputs
|
||||
*
|
||||
*
|
||||
*
|
||||
* update item index, lvl, lvl req
|
||||
*
|
||||
*
|
||||
*
|
||||
**/
|
||||
|
||||
$("input[name='index']").keyup(function(){
|
||||
$(".itemindex").html($(this).val());
|
||||
});
|
||||
|
||||
$('input[name="lvl"]').keyup(function(){
|
||||
$(".itemlvl").html("Level: "+$(this).val());
|
||||
});
|
||||
$('input[name="lvl req"]').keyup(function(){
|
||||
$(".itemlvlreq").html("Level Required: "+$(this).val());
|
||||
});
|
||||
|
||||
|
||||
// cmd = getUniqueItem
|
||||
$('.uniqueitems-select').change(function () {
|
||||
@@ -441,7 +483,7 @@ $(document).ready(function () {
|
||||
*
|
||||
*/
|
||||
|
||||
//$('.props select, .props input').val('');
|
||||
$('.props-container select, .props-container input').val('');
|
||||
|
||||
|
||||
|
||||
|
@@ -153,12 +153,6 @@ select {
|
||||
|
||||
|
||||
|
||||
input{
|
||||
background: url(/img/button.png) !important;
|
||||
background-size: cover;
|
||||
font-weight: bold;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
#search {
|
||||
background: none !important;
|
||||
@@ -204,17 +198,16 @@ option {
|
||||
|
||||
}
|
||||
|
||||
.item_desc p {
|
||||
.item_desc li {
|
||||
font-size: 14px;
|
||||
color: #4169E1;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
.item_desc span {
|
||||
}
|
||||
|
||||
.item_stats {
|
||||
background: #111;
|
||||
min-height: 420px;
|
||||
background: #222;
|
||||
min-height: 560px;
|
||||
max-width: 520px;
|
||||
margin: 0 auto;
|
||||
font-family: ExocetLight;
|
||||
|
Reference in New Issue
Block a user