Compare commits

..

3 Commits

Author SHA1 Message Date
NetMan 21c57e28f9 HTML: Removed unnecessary commented lines 2024-01-14 00:57:57 +01:00
NetMan e85acb81f0 JS: Removed unecessary, not working code 2024-01-14 00:57:31 +01:00
NetMan 1746e2437c CSS: Minor width change 2024-01-14 00:57:05 +01:00
3 changed files with 18 additions and 41 deletions

View File

@ -13,30 +13,6 @@
<div id="container">
<div id="view"></div>
<div id="buttons">
<!-- <div class="buttons-flex">
<div class="button">7</div>
<div class="button">8</div>
<div class="button">9</div>
<div class="button">/</div>
</div>
<div class="buttons-flex">
<div class="button">4</div>
<div class="button">5</div>
<div class="button">6</div>
<div class="button">+</div>
</div>
<div class="buttons-flex">
<div class="button">1</div>
<div class="button">2</div>
<div class="button">3</div>
<div class="button">-</div>
</div>
<div class="buttons-flex">
<div class="button">0</div>
<div class="button">.</div>
<div class="button">=</div>
<div class="button">*</div>
</div> -->
</div>
</div>
</div>

View File

@ -28,11 +28,10 @@ function operate(equals) {
}
function execute(operation) {
if (operation.equal) {
const result = operate(operation);
if ("" in operation) {
console.log("BLANK IS HERE");
}
operation.a_b = !operation.a_b;
operation.equal = false;
operation.operator = "";
if (operation.a_b) {
operation.a = `${result}`;
@ -40,6 +39,7 @@ function execute(operation) {
}
console.table(operation);
console.log(`Result: ${result}`);
}
}
let operation = {
@ -47,6 +47,7 @@ let operation = {
operator: "",
b: "",
a_b: true,
equal: false,
}
let equal = "";
@ -57,20 +58,20 @@ function click(value) {
operation.a += value;
} else {
operation.b += value;
operation.equal = true;
}
} else if (value == "=") {
execute(operation);
} else {
if (operation.operator == "") {
operation.a_b = !operation.a_b;
}
operation.operator = value;
}
console.table(operation);
if ("" in operation) {
console.log("BLANK IS HERE");
if (operation.a_b) {
operation.operator = value;
}
}
console.table(operation);
}
function generateGui() {

View File

@ -14,7 +14,7 @@ html, body {
width: fit-content;
}
#view {
width: 244.5px;
width: 246px;
height: 60px;
background-color: #ccc;
border: 1px solid #000;