mirror of
https://github.com/ijprest/keyboard-layout-editor.git
synced 2026-04-08 17:20:52 -07:00
Now count keys by size and colour
This commit is contained in:
parent
3efd78bfa0
commit
a56307d112
3 changed files with 3 additions and 3 deletions
2
kb.css
2
kb.css
|
|
@ -195,7 +195,7 @@ for i in (1..9) {
|
|||
#rawdata, #customstyles { width: 100%; height: 400px; }
|
||||
#noteseditor { height: 275px; }
|
||||
#rawdata-error, #customstyles-error { white-space: pre; }
|
||||
#summary { width: 100%; height: 400px; padding-left: 20px;}
|
||||
#summary { margin-left: 20px; padding-left: 20px; }
|
||||
|
||||
#tab-content {
|
||||
border-left: 1px solid #ddd;
|
||||
|
|
|
|||
2
kb.html
2
kb.html
|
|
@ -821,6 +821,7 @@ Nav Bar / Header
|
|||
</alert>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- SUMMARY -->
|
||||
<div id="summary" ng-class="{hidden:selTab!=4}">
|
||||
<div class="col-md-12 col-lg-12 row">
|
||||
|
|
@ -833,7 +834,6 @@ Nav Bar / Header
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--***********************************************
|
||||
Footer
|
||||
|
|
|
|||
2
kb.js
2
kb.js
|
|
@ -287,7 +287,7 @@
|
|||
}
|
||||
else
|
||||
{var thisk = "";};
|
||||
thisk += key.width + " x " + key.height;
|
||||
thisk += key.width + " x " + key.height + " (" + key.color + ")";
|
||||
if (counts[thisk])
|
||||
{counts[thisk]++;}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue