Compare commits
	
		
			3 Commits
		
	
	
		
			3b4cbd8ae1
			...
			4d690e2a2a
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 4d690e2a2a | |||
| 143dc31c0e | |||
| f2138425b9 | 
| @@ -19,19 +19,19 @@ const FAIL_CRITERIA = { | ||||
| }; | ||||
|  | ||||
| class Dimensions { | ||||
|     constructor(length, width, height) { | ||||
|         this.length = length; | ||||
|     constructor(width, depth, height) { | ||||
|         this.width = width; | ||||
|         this.depth = depth; | ||||
|         this.height = height; | ||||
|     } | ||||
|  | ||||
|     toString() { | ||||
|         return `${this.length}x${this.width}x${this.height}`; | ||||
|         return `${this.width}x${this.depth}x${this.height}`; | ||||
|     } | ||||
|  | ||||
|     static fromDict(data) { | ||||
|         const { length, width, height } = data; | ||||
|         return new Dimensions(length, width, height); | ||||
|         const { width, depth,  height } = data; | ||||
|         return new Dimensions(width, depth, height); | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -152,6 +152,15 @@ label { | ||||
|     cursor: pointer; | ||||
| } | ||||
|  | ||||
| .card-photo label { | ||||
|     color: var(--text-one); | ||||
|     padding: 10px; | ||||
| } | ||||
|  | ||||
| .measurement { | ||||
|     width: 100px; | ||||
| } | ||||
|  | ||||
| .cage-selector { | ||||
|     display: flex; | ||||
|     flex-wrap: wrap; | ||||
|   | ||||
| @@ -46,8 +46,9 @@ | ||||
|  | ||||
|             <div class="card"> | ||||
|                 <div class="card-photo"> | ||||
|                     <input type="checkbox" id="tiaki"/> | ||||
|                     <form class="form-measurements"> | ||||
|  | ||||
|                     <label for="form-cage-measurements">Käfigmaße</label> | ||||
|                     <form id="form-cage-measurements" class="form-measurements"> | ||||
|                         <div class="input-measurement"> | ||||
|                             <label for="width">Breite</label> | ||||
|                             <input class="measurement" type="number" id="width"> | ||||
| @@ -62,7 +63,6 @@ | ||||
|                         </div> | ||||
|                     </form> | ||||
|                 </div> | ||||
|                 <label>Käfigmaße</label> | ||||
|             </div> | ||||
|  | ||||
|         </div> | ||||
| @@ -86,7 +86,7 @@ | ||||
|         <div class="container output-element" id="resultsDiv"> | ||||
|         </div> | ||||
|     </div> | ||||
|  | ||||
| </div> | ||||
| <script> | ||||
|  | ||||
|     var labelNumRats = document.getElementById("labelNumRats"); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user